当前位置: 代码迷 >> 综合 >> Codeforces Round #348 (div 2) D - Little Artem and Dance
  详细解决方案

Codeforces Round #348 (div 2) D - Little Artem and Dance

热度:76   发布时间:2023-12-17 03:38:23.0

题意:

n个人围一圈,第一种操作所有人移动,第二种相邻位置交换(比如原标号为1的地方和原标号为2的人交换),输出交换后的情况

思路:

暴力处理1和2的移动情况,就能知道奇偶的变化值

错误及反思:

代码:

#include<bits/stdc++.h>
using namespace std;
int n,q;
int ans[1000100];
int main()
{long long mo1=1;long long mo2=2;scanf("%d%d",&n,&q);for(int i=0;i<q;i++){int cho;scanf("%d",&cho);if(cho==1){long long temp;scanf("%I64d",&temp);mo1+=temp;mo2+=temp;mo1%=n;mo2%=n;}else{if(mo1%2==0){mo1--;mo2++;}else{mo2--;mo1++;}}}mo1-=1;mo2-=2;mo1%=n;mo2%=n;while(mo1<0) mo1+=n;while(mo2<0) mo2+=n;for(int i=1;i<=n;i++){if(i%2){long long temp=1ll*i+mo1;temp%=n;ans[(int)temp] = i;}else{long long temp=1ll*i+mo2;temp%=n;ans[(int)temp] = i;}}for(int i=1;i<n;i++){if(i!=1)printf(" %d",ans[i]);else printf("%d",ans[i]);}printf(" %d",ans[0]);puts("");
}
  相关解决方案