Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.3 KB

1046. 划拳.md

File metadata and controls

42 lines (32 loc) · 1.3 KB

【PAT B-1046】划拳

题意概述

酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就赢了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。

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

输入输出格式

输入第一行先给出一个正整数,随后 N 行,每行给出一轮划拳的记录,格式为:甲喊 甲划 乙喊 乙划。其中喊是喊出的数字,划是划出的数字。

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

数据规模

$0<N\le100$,喊出的数字、划出的数字均为不超过 100 的正整数。

C++代码

#include <bits/stdc++.h>
using namespace std;
using gg = long long;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    gg ni, ans1 = 0, ans2 = 0;
    cin >> ni;
    while (ni--) {
        gg a1, a2, b1, b2;
        cin >> a1 >> a2 >> b1 >> b2;
        if (a2 == a1 + b1 and b2 != a1 + b1) {
            ++ans2;
        } else if (a2 != a1 + b1 and b2 == a1 + b1) {
            ++ans1;
        }
    }
    cout << ans1 << ' ' << ans2;
    return 0;
}