# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
22791 | Jongwon Party (#40) | Window XOR (KRIII5_WX) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <vector>
using namespace std;
typedef vector<int> V;
int n;
V pro(const V &a, const V &b)
{
V r, t;
for(int &x: a)
for(int &y: b)
r.push_back((0LL+x+y) % n);
sort(r.begin(), r.end());
if(r.size() == 1)
return r;
bool c = 0;
for(int i = 0; i<r.size(); i++)
{
if(i != 0 && r[i-1] != r[i])
{
if(c)
t.push_back(r[i-1]);
c = 1;
}
else
c = !c;
}
if(c)
t.push_back(r[r.size()-1]);
return t;
}
V exp(const V &a, long long t)
{
if(t == 1)
return a;
if(t%2)
return pro(exp(a, t-1), a);
V h = exp(a, t/2);
return pro(h, h);
}
int arr[100000];
int res[100000];
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
int k, i, j;
long long t;
scanf("%d%d%lld", &n, &k, &t);
for(i = 0; i<n; i++)
scanf("%d", &arr[i]);
V a;
for(i = 0; i<k; i++)
a.push_back(i);
a = exp(a, t);
//for(int &x: a)
// res[0] ^= arr[x];
for(i = 0; i<n; i++)
{
for(int &x: a)
res[i] ^= arr[(x+i)%n];
}
for(i = 0; i<n; i++)
printf("%d ", res[i]);
return 0;
}