UVa 1594 - Ducci Sequence(模拟)

给出Ducci序列定义,输入一个序列,判断它会变成0还是循环。循环次数仅为1000,序列长度最大为15。

就按照给出条件模拟就好,不需要担心超时,可以用来练习STL的使用。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include<iostream>
#include<cstdlib>
#include<vector>
using namespace std;
const int maxn=1010;
vector<int>a;
int t,n;
bool is_zero()
{
int p,q=0;
for(int i=0;i<maxn;i++)
{
q=0;
p=a[0];
for(int j=0;j<n-1;j++)
{
a[j]=abs(a[j]-a[j+1]);
if(!a[j])
q++;
}
a[n-1]=abs(a[n-1]-p);
if(!a[n-1])
q++;
if(q==n)
return true;
}
return false;
}
int main()
{
int x;
cin>>t;
while(t--)
{
cin>>n;
for(int i=0;i<n;i++)
{
cin>>x;
a.push_back(x);
}
if(is_zero())
cout<<"ZERO"<<endl;
else
cout<<"LOOP"<<endl;
a.clear();
}
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **