【PAT】1046. 划拳(15)

来源:互联网 发布:java打印一个实参的值 编辑:程序博客网 时间:2024/05/01 15:44
  1. 划拳(15)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Yue
划拳是古老中国酒文化的一个有趣的组成部分。酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就赢了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。

下面给出甲、乙两人的划拳记录,请你统计他们最后分别喝了多少杯酒。

输入格式:

输入第一行先给出一个正整数N(<=100),随后N行,每行给出一轮划拳的记录,格式为:

甲喊 甲划 乙喊 乙划

其中“喊”是喊出的数字,“划”是划出的数字,均为不超过100的正整数(两只手一起划)。

输出格式:

在一行中先后输出甲、乙两人喝酒的杯数,其间以一个空格分隔。

输入样例:
5
8 10 9 12
5 10 5 10
3 8 5 12
12 18 1 13
4 16 12 15
输出样例:
1 2

#include <stdio.h>#include <stdlib.h>#include <string.h>#include <string>#include <map>#include <iostream>using namespace std;int cmp(const void *a, const void *b){    return *(int*)a - *(int*)b;}int main() {    freopen("input.txt", "r", stdin);    int n;    scanf("%d", &n);    int a=0, b=0;    int t1, s1, t2, s2;    for (int i = 0; i < n; i++){        scanf("%d %d %d %d\n", &t1, &s1, &t2, &s2);        bool p1=false, p2=false;        if (t1 + t2 == s1){            p1 = true;        }        if (t1 + t2 == s2){            p2 = true;        }        if (p1&&!p2){            b++;        }        if (p2&&!p1){            a++;        }    }    cout << a << " " << b << endl;}
0 0
原创粉丝点击