Codeforces Round #593 (Div. 2) A. Stones
Posted c4lnn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #593 (Div. 2) A. Stones相关的知识,希望对你有一定的参考价值。
Link
题意:
有 (a,b,c) 三堆石头,现在有个操作
操作一:从 (a) 中拿一块石头,从 (b) 中拿两块石头
操作二:从 (b) 中拿一块石头,从 (c) 中拿两块石头
问最多拿几块石头
思路:
贪心
两种操作收益都是 (3) 且都会消耗 (b)
操作 (2) 对 (b) 消耗较小 则可优先选择操作二再进行操作一即可得到最大值
代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
//freopen("in.txt","r",stdin);
int T;cin>>T;
while(T--)
{
int a,b,c;
cin>>a>>b>>c;
int res=min(b,c>>1)*3;
b-=res/3;
res+=min(a,b>>1)*3;
cout<<res<<endl;
}
return 0;
}
以上是关于Codeforces Round #593 (Div. 2) A. Stones的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #593 (Div. 2) C. Labs
Codeforces Round #593 (Div. 2) A. Stones
Codeforces Round #593 (Div. 2) B. Alice and the List of Presents