记录编号 |
356221 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOI 2009]变换序列 |
最终得分 |
100 |
用户昵称 |
FoolMike |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.012 s |
提交时间 |
2016-11-29 21:04:12 |
内存使用 |
0.52 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=10010;
int n,a[N],d[N],p[N],q[N],match[N];
int color[N];
bool find(int x,int c){
if (color[x]==c) return 0;
color[x]=c;
if (match[p[x]]==-1||find(match[p[x]],c)){
a[match[p[x]]=x]=p[x];
return 1;
}
if (match[q[x]]==-1||find(match[q[x]],c)){
a[match[q[x]]=x]=q[x];
return 1;
}
return 0;
}
int main()
{
freopen("transform.in","r",stdin);
freopen("transform.out","w",stdout);
scanf("%d",&n);
for (int i=0;i<n;i++) match[i]=color[i]=-1;
for (int i=0;i<n;i++){
scanf("%d",&d[i]);
p[i]=(d[i]+i)%n;
q[i]=(i-d[i]+n)%n;
if (p[i]>q[i]) swap(p[i],q[i]);
}
for (int i=n-1;i>=0;i--)
if (!find(i,i)){puts("No Answer");return 0;}
for (int i=0;i<n-1;i++) printf("%d ",a[i]);
printf("%d\n",a[n-1]);
return 0;
}