CodeForces 651A Joysticks

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 651A Joysticks相关的知识,希望对你有一定的参考价值。

水题。

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <algorithm>
#include <ctime>
#include <stack>
using namespace std;
typedef long long LL;
const int maxn=1e5+9;
const int inf=1e9+9;

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int a,b;
    while(~scanf("%d%d",&a,&b))
    {
        LL cnt=0;
        while(1)
        {
            if(a==0 || b==0)
                break;
            if(a==1 && b==1)
                break;
            if(a>b)
            {
                b++;
                a-=2;
            }
            else
            {
                a++;
                b-=2;
            }
            cnt++;
        }
        printf("%I64d\n",cnt);
    }
    return 0;
}

 

以上是关于CodeForces 651A Joysticks的主要内容,如果未能解决你的问题,请参考以下文章

codeforces - 651A 题解

A Joysticks (Codeforces Round 345 (Div 2) )

codeforces651----A. Joysticks

Codeforces Round #345

Codeforces Round #345 (Div. 2)

codeforces上怎么看测试数据