Tag: problem: (E) The same permutation Solve In C/C++

Codeforces Round #411 (Div. 1), problem: (E) The same permutation Solution In C/C++

#include <stdio.h> int n; int main() { scanf("%d",&n); if(n%4>1)return printf("NOn"),0; printf("YESn"); for(int i=1;i<n;i+=4) { if(n%4)printf("%d %dn%d %dn%d %dn",i+2,n,i+2,i+3,i+3,n); else printf("%d %dn",i+2,i+3); printf("%d %dn",i,i+2); printf("%d %dn",i+1,i+3); printf("%d %dn",i+1,i+2); printf("%d %dn",i,i+3); if(n%4)printf("%d %dn%d %dn%d...

Want to stay up to date with the latest news?

We would love to hear from you! Please fill in your details and we will stay in touch. It's that simple!