Huatuo's Medicine 【水题】

来源:互联网 发布:长歌门捏脸数据 编辑:程序博客网 时间:2024/04/30 18:55

http://acm.uestc.edu.cn/#/problem/show/1226

Huatuo was a famous doctor. He use identical bottles to carry the medicine. There are different types of medicine. Huatuo put medicines into the bottles and chain these bottles together.

However, there was a critical problem. When Huatuo arrived the patient's home, he took the chain out of his bag, and he could not recognize which bottle contains which type of medicine, but he remembers the order of the bottles on the chain.

Huatuo has his own solution to resolve this problem. When he need to bring 2  types of medicines, E.g. A and B, he will put A into one bottle and putB into two bottles. Then he will chain the bottles in the order of -B-A-B-. In this way, when he arrived the patient's home, he knew that the bottle in the middle is medicineA and the bottle on two sides are medicine B.

Now you need to help Huatuo to work out what's the minimal number of bottles needed if he want to bringN  types of medicine.

Input

The first line of the input gives the number of test cases, T (1T100 ).T  lines follow. Each line consist of one integer N (1N100 ), the number of types of the medicine.

Output

For each test case, output one line containing Case #x: y, where x  is the test case number (starting from 1 ) and y  is the minimal number of bottles Huatuo needed.

Sample input and output

Sample InputSample Output
12
Case #1: 3
题意:用两个B夹着A,就可以一下子知道中间的是A了,规律题2*n-1

#include <cstdio>#include <algorithm>using namespace std;int main(){int T, N;int cnt=0;scanf("%d",&T);while(T--){scanf("%d",&N);if(N==0) {printf("Case #%d: 0\n",++cnt);continue;}printf("Case #%d: %d\n",++cnt,2*N-1);}return 0;}



0 0
原创粉丝点击