A. Stones---水题

第二天叫醒我的不是闹钟,是梦想!

Alice is playing with some stones.

Now there are three numbered heaps of stones. The first of them contains a stones, the second of them contains b stones and the third of them contains c stones.

Each time she can do one of two operations:

take one stone from the first heap and two stones from the second heap (this operation can be done only if the first heap contains at least one stone and the second heap contains at least two stones);
take one stone from the second heap and two stones from the third heap (this operation can be done only if the second heap contains at least one stone and the third heap contains at least two stones).
She wants to get the maximum number of stones, but she doesn’t know what to do. Initially, she has 0 stones. Can you help her?

Input
The first line contains one integer t (1≤t≤100) — the number of test cases. Next t lines describe test cases in the following format:

Line contains three non-negative integers a, b and c, separated by spaces (0≤a,b,c≤100) — the number of stones in the first, the second and the third heap, respectively.

In hacks it is allowed to use only one test case in the input, so t=1 should be satisfied.

Output
Print t lines, the answers to the test cases in the same order as in the input. The answer to the test case is the integer — the maximum possible number of stones that Alice can take after making some operations.

Example
inputCopy
3
3 4 5
1 0 5
5 3 2
outputCopy
9
0
6
Note
For the first test case in the first test, Alice can take two stones from the second heap and four stones from the third heap, making the second operation two times. Then she can take one stone from the first heap and two stones from the second heap, making the first operation one time. The summary number of stones, that Alice will take is 9. It is impossible to make some operations to take more than 9 stones, so the answer is 9.



#include<bits/stdc++.h>
using namespace std;
int a,b,c;
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
      cin>>a>>b>>c;
       c=c/2;
      int sum=0;
      sum+=min(b,c)*3;
    //  cout<<min(b,c)<<endl;
      b=b-min(b,c);
      b=b/2;
    //  cout<<sum<<endl;
      sum+=min(a,b)*3;
      cout<<sum<<endl;
    }
}

发布了289 篇原创文章 · 获赞 6 · 访问量 4015

猜你喜欢

转载自blog.csdn.net/qq_43690454/article/details/103410697