UVA1594 Ducci Sequence(纯模拟)
Posted noble_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA1594 Ducci Sequence(纯模拟)相关的知识,希望对你有一定的参考价值。
题目
题目
?
?
分析
真的快疯了,中午交了一题WA了好久,最后发现最后一个数据不能加\n,于是这次学乖了,最后一组不输出\n,于是WA了好几发,最后从Udebug发现最后一组是要输出的!!!
?
?
代码
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
int n,a[25];
bool s()
{
for(int i=0;i<n;i++)
if(a[i]!=0) return false;
return true;
}
int main()
{
int t;
// freopen("1.txt","w",stdout);
scanf("%d",&t);
while(t--){
int flag=0;
scanf("%d",&n);
for(int i=0;i<n;i++) scanf("%d",&a[i]);
for(int i=1;i<=1001;i++)
{
if(s()) { flag=1; break; }
int top=a[0];
for(int j=0;j<n-1;j++)
{
a[j]=abs(a[j]-a[j+1]);
}
a[n-1]=abs(a[n-1]-top);//a[0]被修改过了,只能用top
}
if(flag==1) printf("ZERO\n");
else printf("LOOP\n");
}
return 0;
}
以上是关于UVA1594 Ducci Sequence(纯模拟)的主要内容,如果未能解决你的问题,请参考以下文章
ACM ICPC 2009 Asia Seoul Ducci Sequence 题解
UVa 1584 Circular Sequence --- 水题