codeforces #345 div2 A. Joysticks (贪心)
题目链接 题意:两个手柄? 初始的电量给出,只有一个充电器,每经过一秒,充着电的手柄电量增加1,没有充电的手柄电量减少2,允许电量充到0以上,当有电量为0的时候,或者当某一分钟开始的时候有手柄电量为1,游戏立即结束。问最多能玩多少时间游戏。
思路:贪心。。每次给电量少的充电。 坑点在于当某一时刻有手柄电量为1,那么游戏在进行这一分钟之前就结束。
/* ***********************************************
Author :111qqz
Created Time :2016年03月07日 星期一 17时06分41秒
File Name :code/cf/#345/A.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
int a,b;
int main()
{
#ifndef ONLINE_JUDGE
freopen("code/in.txt","r",stdin);
#endif
cin>>a>>b;
int cnt = 0 ;
while (1)
{
if (a>b)
{
a-=2;
if (a<0) break;
b++;
}
else
{
a++;
b-=2;
if (b<0) break;
}
cnt++;
// if (a==1&&b==1) break;
if (a<=0||b<=0) break;
}
cout<<cnt<<endl;
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}