谁先倒(模拟)

来源:互联网 发布:怎么做一个淘宝客 编辑:程序博客网 时间:2024/06/13 22:46
谁先倒  

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

下面给出甲、乙两人的酒量(最多能喝多少杯不倒)和划拳记录,请你判断两个人谁先倒。

输入格式:

输入第一行先后给出甲、乙两人的酒量(不超过100的非负整数),以空格分隔。下一行给出一个正整数N\le 100100),随后N行,每行给出一轮划拳的记录,格式为:

甲喊 甲划 乙喊 乙划

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

输出格式:

在第一行中输出先倒下的那个人:A代表甲,B代表乙。第二行中输出没倒的那个人喝了多少杯。题目保证有一个人倒下。注意程序处理到有人倒下就终止,后面的数据不必处理。

输入样例:

1 168 10 9 125 10 5 103 8 5 1212 18 1 134 16 12 1515 1 1 16
#include <iostream>#include <cstdio>#include <cmath>#include <queue>#include <stack>#include <map>#include <algorithm>#include <vector>#include <string>#include <cstring>#include <sstream>using namespace std;int main(){    int OA,OB;    int A,B;    int N;    scanf("%d%d",&A,&B);    OA=A;    OB=B;    scanf("%d",&N);    while(A>=0&&B>=0)    {        int a,b,x,y;        scanf("%d%d%d%d",&a,&x,&b,&y);        if(x==a+b && y==a+b)        {            continue;        }        else if(x!=a+b && y!=a+b)        {            continue;        }        else if(x==a+b)        {            A--;        }        else        {            B--;        }    }    if(A<0)    {        printf("A\n");        printf("%d\n",OB-B);        return 0;    }    else    {        printf("B\n");        printf("%d\n",OA-A);    }    system("pause");    return 0;}


0 0
原创粉丝点击