10317 Fans of Footbal Teams

时间限制:1000MS  内存限制:65535K

题型: 编程题   语言: 无限制

Description

  1. Two famous football teams, named AC Milan(AC米兰) and Inter Milan(国际米兰) will have a match in GuangZhou City, which is
  2. exciting. So a lot of fans get together to watch the wonderful match. This trouble the local polices. In order to avoid a
  3. chaos caused by fans of the two teams, the police office in GuangZhou City decides to arrange the seats of the gymnasium(体育馆)
  4. during the match. All fans of AC Milan seat Noth, while all fans of Inter Milan seat South . However, the police first needs
  5. to identify which team a fan support. The present question is, given two fans; do they support a same team? You must give
  6. your judgment based on incomplete information.
  7.  
  8. Assume N (N <= 10^5) fans are currently in GuangZhou City, numbered from 1 to N. You will be given M (M <= 10^5) messages
  9. in sequence, which are in the following two kinds:
  10.  
  11. 1. D [a] [b]
  12. where [a] and [b] are the numbers of two fans, and they support different teams.
  13.  
  14. 2. A [a] [b]
  15. where [a] and [b] are the numbers of two fans. This requires you to decide whether a and b support a same team.

输入格式

  1. The first line of the input contains a single integer T (1 <= T <= 20), the number of test cases. Then T cases follow.
  2. Each test case begins with a line with two integers N and M, followed by M lines each containing one message as described above.

输出格式

  1. For each message "A [a] [b]" in each case, your program should give the judgment based on the information got before.
  2. The answers might be one of "Support the same team.", "Support different teams." and "Not sure yet."

输入样例

  1. 1
  2. 5 5
  3. A 1 2
  4. D 1 2
  5. A 1 2
  6. D 2 4
  7. A 1 4

输出样例

  1. Not sure yet.
  2. Support different teams.
  3. Support the same team.

作者

admin

解题思路

【题意】AC米兰和国际米兰要在广州比赛从而吸引众多的球迷前来观看,为了保证治安问题保安要为球迷分配观看的位置,现在需要知道哪些球迷支持相同的球队,哪些球迷支持不同的球迷,现在根据给的数据n(球迷的数量,编号从1到n),m(条信息,说明这两个球迷支持相反的球队或需要你输出判断这两个球迷支持球队的信息)

【随笔】开始认为只有两种情况,要么支持相同的球队,要么支持相反的球队,打算用一个数组就解决问题,后来发现这样下去有问题,比如出现两组支持不同球队的四个人,然后接下来的某条信息将其中的两个人联系起来,那么从中还可以得到四个人的信息,手写出数据来试着分析很容易发现其中的规律

D 1 2; D 2 4; D 3 5; D 7 8; D 5 2; D 1 7; D 6 9; D 6 10;

【解题】~并查集~给你的D中的数据主要分三种情况,两个球迷之前均没表明立场的;其一表明立场的;两者均有表明立场的;用一个数组构造并查集,用另一数组存储各自的死对头,死对头每次我都及时更新,其实后来想想是没必要的,因为敌人的敌人就是朋友,在构成的并查集里最终还是能找到源点表明不同的立场。存储死对头主要是想判断是否是”无法判断“这种情况。而存储死对头的还有一个作用是找到死对头的源点,将此时新增的死对头加入此行列。并查集查找源点的时候即使压缩路径,所以尽管每次都去查找,但是消耗的时间还不是很多。

【PS】这题恶心了好长的一段时间,主要是思路还不是很清晰,现在回想很多想法和考虑到的东西以及实现的方法还是没必要的,这里已经浪费了大半的时间

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<string>
  4. #include<cstring>
  5. #include<algorithm>
  6. #define MAXN 100010
  7.  
  8. using namespace std;
  9.  
  10. int middle[MAXN], digit[MAXN];
  11. char same[] = "Support the same team.";
  12. char dif[] = "Support different teams.";
  13. char mix[] = "Not sure yet.";
  14.  
  15. int find_father(int fac)
  16. {//查找源头并及时压缩路径
  17. return middle[fac] = fac == middle[fac] ? fac : find_father(middle[fac]);
  18. }
  19.  
  20. /*
  21. void Print(int n)
  22. {
  23. static int cnt = 0;
  24. for(int i=1; i<=n; i++)
  25. {
  26. printf("middle[%d] = %d, D[%d] = %d\n", i, middle[i], i, digit[i]);
  27. }
  28. printf("-------------------%d----------------------\n", ++cnt);
  29. }
  30. */
  31.  
  32. int main()
  33. {
  34. #ifndef ONLINE_JUDGE
  35. freopen("F:\\test\\input.txt", "r", stdin);
  36. #endif // ONLINE_JUDGE
  37.  
  38. int T;
  39. int n, m, first, second, sum;
  40. int father, foster, fir_father, sec_father, fir_foster, sec_foster;
  41. char kind;
  42. bool falg = false;
  43. scanf("%d", &T);
  44. while(T--)
  45. {
  46. scanf("%d%d", &n, &m);
  47. for(int i=; i<=n; ++i)
  48. {
  49. middle[i] = i;
  50. digit[i] = ;
  51. }
  52. for(int i=; i<m; ++i)
  53. {
  54. getchar();
  55. scanf("%c", &kind);
  56. scanf("%d%d", &first, &second);
  57. if(kind == 'A')
  58. {
  59. fir_father = find_father(first);
  60. sec_father = find_father(second);
  61. if(fir_father == sec_father)
  62. printf("%s\n", same);
  63. else
  64. {
  65. fir_foster = find_father(digit[fir_father]);
  66. if(fir_foster == sec_father)
  67. printf("%s\n", dif);
  68. else
  69. printf("%s\n", mix);
  70. }
  71.  
  72. }
  73. else if(kind == 'D')
  74. {
  75. if(!digit[first] && !digit[second])
  76. {//互相存储死对头的编号
  77. digit[first] = second;
  78. digit[second] = first;
  79. }
  80. else if(!digit[first] && digit[second])
  81. {
  82. father = find_father(second);
  83. foster = find_father(digit[father]);
  84. middle[foster] = first;
  85. digit[first] = father;
  86. }
  87. else if(digit[first] && !digit[second])
  88. {
  89. father = find_father(first);
  90. foster = find_father(digit[father]);
  91. middle[foster] = second;
  92. digit[second] = father;
  93. }
  94. else
  95. {
  96. fir_father = find_father(first);
  97. sec_father = find_father(second);
  98. fir_foster = find_father(digit[fir_father]);
  99. sec_foster = find_father(digit[sec_father]);
  100. middle[fir_foster] = sec_father;
  101. middle[sec_foster] = fir_father;
  102. }
  103. }
  104. }
  105. }
  106.  
  107. return ;
  108. }

SCAU 07校赛 10317 Fans of Footbal Teams的更多相关文章

  1. 10317 Fans of Footbal Teams(并查集)

    10317 Fans of Footbal Teams 时间限制:1000MS  内存限制:65535K提交次数:0 通过次数:0 题型: 编程题   语言: G++;GCC Description ...

  2. 10317 Fans of Footbal Teams

    10317 Fans of Footbal Teams 时间限制:1000MS  内存限制:65535K提交次数:0 通过次数:0 题型: 编程题   语言: G++;GCC Description ...

  3. SCAU 13校赛 17115 ooxx numbers

    17115 ooxx numbers 时间限制:1000MS  内存限制:65535K 题型: 编程题   语言: 无限制 Description a number A called oo numbe ...

  4. 2015 GDUT校赛

    周末打了个GDUT的校赛,也是作为SCAU的一场个人排位. 比赛中竟然卡了个特判,1个半钟就切了5条了,然后一直卡. 还有其他两条可以做的题也没法做了,性格太执着对ACM来说也是错呀. 讲回正题 . ...

  5. 2016 华南师大ACM校赛 SCNUCPC 非官方题解

    我要举报本次校赛出题人的消极出题!!! 官方题解请戳:http://3.scnuacm2015.sinaapp.com/?p=89(其实就是一堆代码没有题解) A. 树链剖分数据结构板题 题目大意:我 ...

  6. SCNU省选校赛第二场B题题解

    今晚的校赛又告一段落啦,终于"开斋"了! AC了两题,还算是满意的,英语还是硬伤. 来看题目吧! B. Array time limit per test 2 seconds me ...

  7. 2014上半年acm总结(1)(入门+校赛)

    大一下学期才开始了acm,不得不说有一点迟,但是acm确实使我的生活充实了很多,,不至于像以前一样经常没事干=  = 上学期的颓废使我的c语言学的渣的一笔..靠考前突击才基本掌握了语法 寒假突然醒悟, ...

  8. 2017CUIT校赛-线上赛

    2017Pwnhub杯-CUIT校赛 这是CUIT第十三届校赛啦,也是我参加的第一次校赛. 在被虐到崩溃的过程中也学到了一些东西. 这次比赛是从5.27早上十点打到5.28晚上十点,共36小时,中间睡 ...

  9. HZNU第十二届校赛赛后补题

    愉快的校赛翻皮水! 题解 A 温暖的签到,注意用gets #include <map> #include <set> #include <ctime> #inclu ...

随机推荐

  1. 32. Longest Valid Parentheses

    题目: Given a string containing just the characters '(' and ')', find the length of the longest valid ...

  2. Android 在Intent中传递接口

    总结:在Activity中不能用intent传递匿名接口,原因如下:Activity A中生成了匿名接口M, 这个接口的引用就在组Activity A中,Activity A会禁止接口M 序列化.因为 ...

  3. Hibernate检索方式 分类: SSH框架 2015-07-10 22:10 4人阅读 评论(0) 收藏

    我们在项目应用中对数据进行最多的操作就是查询,数据的查询在所有ORM框架中也占有极其重要的地位.那么,如何利用Hibernate查询数据呢?Hibernate为我们提供了多种数据查询的方式,又称为Hi ...

  4. VS2015中的异常配置

    The New Exception Settings Window in Visual Studio 2015Managing Exceptions with the Debugger Underst ...

  5. hdu 1513 && 1159 poj Palindrome (dp, 滚动数组, LCS)

    题目 以前做过的一道题, 今天又加了一种方法 整理了一下..... 题意:给出一个字符串,问要将这个字符串变成回文串要添加最少几个字符. 方法一: 将该字符串与其反转求一次LCS,然后所求就是n减去 ...

  6. 转载:Unobtrusive JavaScript in ASP.NET MVC 3 隐式的脚本在MVC3

    Unobtrusive JavaScript 是什么? <!--以下是常规Javascript下写出来的Ajax--> <div id="test"> &l ...

  7. LeetCode Find Minimum in Rotated Sorted Array 旋转序列找最小值(二分查找)

    题意:有一个有序序列A,其内部可能有部分被旋转了,比如A[1...n]被转成A[mid...n]+A[1...mid-1],如果被旋转,只有这种形式.问最小元素是?(假设没有重复元素) 思路:如果是序 ...

  8. 最简单的视音频播放示例6:OpenGL播放YUV420P(通过Texture,使用Shader)

    本文记录OpenGL播放视频的技术.上一篇文章中,介绍了一种简单的使用OpenGL显示视频的方式.但是那还不是OpenGL显示视频技术的精髓.和Direct3D一样,OpenGL更好的显示视频的方式也 ...

  9. fzu 1675 The Seventy-seven Problem

    给你长度为 10^5~10^6长度,由数字组成的串 其中有4位不见了 补全该串 使得在该串能整除 77的同时 尽可能大// 先计算出每个 n*10^m 模 77 的循环节 n=0,1,2..,9// ...

  10. 【转】自定义iOS的Back按钮(backBarButtonItem)和pop交互手势(interactivepopgesturerecognizer) --- 不错

    原文网址:http://blog.csdn.net/joonsheng/article/details/41362499 序 说到自定义UINavigetionController的返回按钮,iOS7 ...