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