当前位置: 代码迷 >> 综合 >> CF - 409 - A. The Great Game(IQ)
  详细解决方案

CF - 409 - A. The Great Game(IQ)

热度:78   发布时间:2024-01-10 13:05:06.0

题意:给出两个字符串代表两支球队的比赛结果,问谁胜。

题目链接:http://codeforces.com/problemset/problem/409/A

——>>坑死了。。根据样例,可推出8< 胜 [],[] 胜 ()。。

那么8<与(),谁会胜呢?

一直我都以为会有传递性,于是一直WA。。

答案:()胜8<。。

#include <cstdio>using namespace std;const int maxn = 20 + 5;int main()
{char s1[maxn], s2[maxn];while(scanf("%s%s", s1, s2) == 2) {int p1 = 0, p2 = 0;for(int i = 0; s1[i]; i += 2) {if(s1[i] == s2[i]) continue;if(s1[i] == '8') s2[i] == '[' ? p1++ : p2++;else if(s1[i] == '[') s2[i] == '(' ? p1++ : p2++;else s2[i] == '8' ? p1++ : p2++;}p1 > p2 ? puts("TEAM 1 WINS") : (p1 < p2 ? puts("TEAM 2 WINS") : puts("TIE"));}return 0;
}


  相关解决方案