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