# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
993926 | Lib | 마술쇼 (APIO24_show) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "Alice.h"
using namespace std;
int toggled[500];
int perm1[10000];
int perm2[10000];
long long x;
long long len=4801;
vector<pair <int,int>> Alice(){
setN(x);
x^=463222221001217544;
int toggledcnt=0;
for(int i=0;i<=60;i++){
if(x >> i & 1){
toggled[i]=1;
toggledcnt++;
}
}
for(int i=1;i<=4801;i++){
perm1[i]=-1;
}
//initialize the 1st perm;
for(int i=0;i<=60;i++){
if(toggled[i]){
for(int k=1;k<=17;k++){
perm1[i*17+k]=i;
}
}
}
srand(123190);
for(int i=1;i<=len-1-toggledcnt*17;i++){
swap(perm1[i],perm1[rand()%(len-i-toggledcnt*17)+i]);
}
}