이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "interactive.h"
using namespace std;
map<int , int> Z;
vector<int> guess(int n){
int a = ask(1);
for(int i = 0; i < 7; ++i){
vector<int> x , y;
for(int k = 1; k < n; ++k){
if(k >> i & 1) x.emplace_back(k + 1) , y.emplace_back(k + 1);
}
vector<int> X = get_pairwise_xor(x);
y.emplace_back(1);
vector<int> Y = get_pairwise_xor(y);
map<int , int> A;
for(int x : X)A[x]--;
for(int x : Y)A[x]++;
for(auto x : A){
if(x.second>0)Z[x.first^a] += 1<<i;
}
}
vector<int> ans;
ans.resize(n);
ans[0] = a;
for(auto x : Z)ans[x.second]=x.first;
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |