hdu 4161

网友投稿 247 2022-09-04

hdu 4161

​​Iterated Difference​​

Time Limit: 1000MS

 

Memory Limit: 32768KB

 

64bit IO Format: %I64d & %I64u

​​Submit​​​ ​​Status​​

Description

You are given a list of N non-negative integers a(1), a(2), ... , a(N). You replace the given list by a new list: the k-th entry of the new list is the absolute value of a(k) - a(k+1), wrapping around at the end of the list (the k-th entry of the new list is the absolute value of a(N) - a(1)). How many iterations of this replacement are needed to arrive at a list in which every entry is the same integer?  For example, let N = 4 and start with the list (0 2 5 11). The successive iterations are:  2 3 6 11  1 3 5 9  2 2 4 8  0 2 4 6  2 2 2 6  0 0 4 4  0 4 0 4  4 4 4 4  Thus, 8 iterations are needed in this example.

Input

The input will contain data for a number of test cases. For each case, there will be two lines of input. The first line will contain the integer N (2 <= N <= 20), the number of entries in the list. The second line will contain the list of integers, separated by one blank space. End of input will be indicated by N = 0.

Output

For each case, there will be one line of output, specifying the case number and the number of iterations, in the format shown in the sample output. If the list does not attain the desired form after 1000 iterations, print 'not attained'.

Sample Input

4 0 2 5 11 5 0 2 5 11 3 4 300 8600 9000 4000 16 12 20 3 7 8 10 44 50 12 200 300 7 8 10 44 50 3 1 1 1 4 0 4 0 4 0

Sample Output

Case 1: 8 iterations Case 2: not attained Case 3: 3 iterations Case 4: 50 iterations Case 5: 0 iterations Case 6: 1 iterations

Source The 2011 Rocky Mountain Regional Contest #include using namespace std; int a[30]; int main() { int n,ca=1; while(scanf("%d",&n)&&n){ int k=1; for(int i=0;i1000) { k=2; break; } } if(k==1) printf("Case %d: %d iterations\n",ca++,cnt); else if(k==2) printf("Case %d: not attained\n",ca++); } return 0; }

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:hdu5665
下一篇:当Marketing变成Mistake,怎样的营销才是行业的真正明灯?
相关文章

 发表评论

暂时没有评论,来抢沙发吧~