# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
475580 | ismoilov | Xoractive (IZhO19_xoractive) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "interactive.h"
using namespace std;
vector<int> guess(int n)
{
if(n <= 14){
vector <int> ans;
for(int i = 1; i <= n; i ++)
int x = ask(i), ans.push_back(x);
return ans;
}
int a = ask(1);
map <int, int> s;
for(int i = 0; i < 7; i ++){
vector <int> x;
for(int j = 1; j < n; j ++)
if(j >> i & 1)
x.push_back(j+1);
vector <int> c = get_pairwise_xor(x);
c.push_back(1);
vector <int> c1 = get_pairwise_xor(x);
map <int, int> g;
for(int j : c)
g[j] --;
for(int j : c1)
g[j] ++;
for(auto it : g)
if(it.second > 0)
s[it.first^a] += (1<<i);
}
vector <int> ans(n);
ans[0] = a;
for(auto it : s)
ans[it.second] = it.first;
return ans;
}