Va 657-The die is cast (dfs * 2)
The die is cast
Time Limit:3000 MS
Memory Limit:0 KB
64bit IO Format:% Lld & % lluSubmit Status
Description
InterGames is a high-tech startup company that specializes in developing technology that allows users to play games over the Internet. A market analysis has alerted them to the fact that games of chance are pretty popular among their potential MERs. be it Monopoly, ludo or backgammon, most of these games involve throwing dice at some stage of the game.
Of course, it wocould be unreasonable if players were allowed to throw their dice and then enter the result into the computer, since cheating wocould be way to easy. so, instead, InterGames has decided to supply their users with a camera that takes a picture of the thrown dice, analyzes the picture and then transmits the outcome of the throw automatically.
For this they desperately need a program that, given an image containing several dice, determines the numbers of dots on the dice.
We make the following assumptions about the input images. The images contain only three dif-ferent pixel values: for the background, the dice and the dots on the dice. We consider twpixo elsConnectedIf they share an edge-meeting at a corner is not enough. In the figure, pixels A and B are connected, but B and C are not.
A setSOf pixels is connected if for every pair (A,B) Of pixels inS, There is a sequence inSSuch thatA=A1 andB=AK, AndAIAndAI+ 1 are connected.
We consider all maximally connected sets consisting solely of non-background pixels to be dice. 'maximally connected' means that you cannot add any other non-background pixels to the set without making it dis-connected. likewise we consider every maximal connected set of dot pixels to form a dot.
Input The input consists of pictures of several dice throws. Each picture description starts with a line containing two numbers w and h, the width and height of the picture, respectively. These values satisfy.
The followingHLines containWCharacters each. The characters can be :''.''For a background pixel ,''*''For a pixel of a die, and''X''For a pixel of a die's dot.
Dice may have different sizes and not be entirely square due to optical distortion. The picture will contain at least die one, and the numbers of dots per die is between 1 and 6, random Sive.
The input is terminated by a picture startingW=H= 0, which shocould not be processed.
Output For each throw of dice, first output its number. Then output the number of dots on the dice in the picture, sorted in increasing order.
Print a blank line after each test case.
Sample Input
30 15...........................................................................*.................*****......****...............*X***.....**X***..............*****....***X**...............***X*.....****................*****.......*....................................................***........******............**X****.....*X**X*...........*******......******..........****X**.......*X**X*.............***........******...................................0 0
Sample Output
Throw 11 2 2 4
Question: Give an image with multiple (at least one) dice and judge the number of points on the dice. The image consists of three pixels '. 'indicates the background,' * 'indicates the dice, and 'x' indicates the vertex in the dice. Two pixels share one edge to indicate connection, but the sharing corner does not indicate connection.
Solution: For two in-depth searches, search for the sieve first and then several points in the sieve.
PS: When the boundary is controlled, I do not have an equal sign, wa for a day, trenching, and how blind my eyes are! Saddddddd
# Include
# Include
# Include
# Include
# Include
# Include
# Include
Using namespace std; char mp [110] [110]; int sum [110]; int n, m, t; int jx [] = }; int jy [] = {0,-1, 1}; void dfs1 (int x, int y) {int I; mp [x] [y] = '*'; // directly convert X to * When finding X, so that the vis mark is not used, and the adjacent X for (I = 0; I <4; I ++) {int dx = x + jx [I]; int dy = y + jy [I]; if (dx> = 0 & dx
= 0 & dy
= 0 & dxx
= 0 & dyy
= 0 & dxx
= 0 & dyy