이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "interactive.h"
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
int msb(int val){return sizeof(int)*8-__builtin_clz(val)-1;}
vector<int> guess(int n) {
vector <int> ans(n);
vector<multiset<int>> v(8);
vector<multiset<int>> o(8);
ans[0] = ask(1);
for(int j=0;j<7;j++){
vector<int> todo;
for(int i=2;i<=n;i++){
if(i&(1<<j))todo.pb(i);
}if(todo.empty())continue;
vector<int> tmp = get_pairwise_xor(todo);
for(auto x : tmp){
v[j].insert(x);
}todo.pb(1);
tmp = get_pairwise_xor(todo);
for(auto x : tmp){
o[j].insert(x);
}
}
for(int i=0;i<7;i++){
for(auto x : v[i]){
o[i].erase(o[i].find(x));
}
}
for(int i=2;i<=n;i++){
multiset<int> res;
for(auto x : o[msb(i)])res.insert(x);
for(int j=0;j<msb(i);j++){
if(i&(1<<j)){
vector<int> toerase;
for(auto x : res)if(o[j].find(x) == o[j].end())toerase.pb(x);
for(auto x : toerase)res.erase(res.find(x));
}else {
for(auto x : o[j]){
if(res.find(x) != res.end())res.erase(res.find(x));
}
}
}
assert(res.size());
ans[i-1] = (*res.rbegin())^ans[0];
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |