博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1498 50 years, 50 colors
阅读量:6947 次
发布时间:2019-06-27

本文共 3338 字,大约阅读时间需要 11 分钟。

Problem Description:
On 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.
 
Input:
There 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.
 
Output:
For 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 Input:
1 1
1
 
2 1
 
1 1
 
1 2
2 1
1 2
2 2
5 4
1 2 3 4 5
2 3 4 5 1
3 4 5 1 2
4 5 1 2 3
5 1 2 3 4
3 3
50 50 50
50 50 50
50 50 50
0 0
 
Sample Output:
-1
1
2
1 2 3 4 5
-1

 题意:有n行n列的不同颜色气球,颜色由数字表示(1~50),现在每次只能摧毁同一行或者同一列的相同颜色的气球,问k次摧毁后哪几种颜色的气球未被摧毁完

#include
#include
#include
#define N 110using namespace std;int G[N][N], vis[N], use[N];int n;int Find(int u, int col) //匈牙利算法{ int i; for (i = 1; i <= n; i++) { if (!vis[i] && G[u][i] == col) { vis[i] = 1; if (!use[i] || Find(use[i], col)) { use[i] = u; return 1; } } } return 0;}int main (){ int kk, i, j, flag, k, ans, cou[N], s[N]; while (scanf("%d%d", &n, &kk), n+kk) { memset(G, 0, sizeof(G)); memset(cou, 0, sizeof(cou)); k = flag = 0; for (i = 1; i <= n; i++) { for (j = 1; j <= n; j++) { scanf("%d", &G[i][j]); cou[G[i][j]] = 1; //记录该种颜色出现过 } } for (i = 1; i <= 50; i++) { ans = 0; memset(use, 0, sizeof(use)); if (cou[i]) { for (j = 1; j <= n; j++) { memset(vis, 0, sizeof(vis)); if (Find(j, i)) ans++; //查找图中是i颜色的最大匹配 } if (ans > kk) //如果最大匹配比可以摧毁的次数大,那么不能被摧毁完 { s[k++] = i; flag = 1; } } } if (flag == 0) printf("-1\n"); else { printf("%d", s[0]); for (i = 1; i < k; i++) printf(" %d", s[i]); printf("\n"); } } return 0;}

 

转载于:https://www.cnblogs.com/syhandll/p/4720243.html

你可能感兴趣的文章
SpringBoot JMS(ActiveMQ) 使用实践
查看>>
如何用Tensorflow训练模型成pb文件和和如何加载已经训练好的模型文件
查看>>
Mysql系列九:使用zookeeper管理远程Mycat配置文件、Mycat监控、Mycat数据迁移(扩容)...
查看>>
『转载』使用DotMSN 2.0开发MSN机器人
查看>>
1489: 数字排列 (DFS)
查看>>
china-pub满48元即刻享受免运费
查看>>
分布式系统工程实现:GFS&amp;Bigtable设计的优势,互联网营销
查看>>
用WPF实现屏幕文字提示,徐汇区网站设计
查看>>
在tomcat中配置连接池
查看>>
矩阵乘法-并行计算
查看>>
EF 增删改查 泛型方法、类
查看>>
Android 中的MVP 模式
查看>>
SQL函数说明大全
查看>>
【转】.NET多种WebKit内核/Blink内核浏览器初步测评报告
查看>>
var_dump() 格式化输出 | 显示不全
查看>>
IntelliJ IDEA中出现could not auto wired错误提示处理方式
查看>>
一个方便的颜色主题组件
查看>>
asp.net 获取服务器相关信息
查看>>
SQL 语句推荐标准
查看>>
sql server 2000 语法
查看>>