HDU 1498 50 years, 50 colors

Source: Internet
Author: User
Question Link
 1 #include <cstring> 2 #include <cstdio> 3  4 short G[101][101]; 5 bool vis[101]; 6 short match[101]; 7 short n; 8  9 bool dfs(short x, short c)10 {11     int i;12 13     for(i=0;i<n;i++)14     {15         if(G[x][i] == c && !vis[i]){16             vis[i] = true;17             if(match[i] == -1 || dfs(match[i],c)){18                 match[i] = x;19                 return true;20             }21         }22     }23     return false;24 }25 26 int main()27 {28     short i, j, k, l, p;29     short ans[51];30 31     while(scanf("%d %d",&n,&k),n+k){32         for(i=0;i<n;i++)33             for(j=0;j<n;j++)34                 scanf("%d",&G[i][j]);35         l = 0;36         for(i=1;i<51;i++)37         {38             p = 0;39             memset(match,-1,sizeof(match));40             for(j=0;j<n;j++)41             {42                 memset(vis,0,sizeof(vis));43                 p += dfs(j, i);44             }45             if(p>k)46                 ans[l++] = i;47         }48         if(!l)49             printf("-1\n");50         else {51             for(i=0;i<l;i++)52                 printf("%d%c",ans[i],i==l-1?‘\n‘:‘ ‘);53         }54     }55     return 0;56 }
Short Code

 

Problem descriptionon octorber 21st, HDU 50-Year-celebration, 50-color balloons floating around the campus, it's so nice, isn' t it? To celebrate this meaningful day, the ACM team of HDU hold some fuuny games. Especially, there will be a game named "crashing color balloons ".

There will be a n * n matrix board on the ground, and each grid will have a color balloon in it. and the color of the Ballon will be in the range of [1, 50]. after the referee shouts "Go! ", You can begin to crash the balloons. every time you can only choose one kind of balloon to crash, we define that the two balloons with the same color belong to the same kind. what's more, each time you can only choose a single row or column of balloon, and crash the balloons that with the color you had chosen. of course, a lot of students are waiting to play this game, so we just give every student K times to crash the balloons.

Here comes the problem: Which kind of balloon is impossible to be all crashed by a student in K times.

 

 

Inputthere will be multiple input cases. each test case begins with two integers n, k. n is the number of rows and columns of the balloons (1 <= n <= 100), and K is the times that ginving to each student (0 <k <= N ). follow a matrix A of N * n, where AIJ denote the color of the ballon in the I row, J column. input ends with N = k = 0.

 

Outputfor each test case, print in ascending order all the colors of which are impossible to be crashed by a student in K times. If there is no choice, print "-1 ".

 

Sample input1 112 11 11 22 22 25 41 2 3 4 52 3 4 5 13 4 5 1 24 5 1 2 35 1 3 43 350 50 5050 5050 500 0

 

Sample output-1121 2 3 4 5-1

I am deceiving traffic.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.