# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
345517 | mat_v | Xoractive (IZhO19_xoractive) | C++14 | 7 ms | 620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "interactive.h"
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/rope>
#define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
#define fb(i,a,b) for(int (i) = (a); (i) >= (b); --(i))
#define mod 998244353
#define xx first
#define yy second
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define ll long long
#define pii pair<int,int>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less<int>,rb_tree_tag, tree_order_statistics_node_update> ordered_set;/// find_by_order(x)(x+1th) , order_of_key() (strictly less)
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
vector<int> ans;
vector<int> up1;
vector<int> up2;
map<int,int> poj;
map<int,int> skup;
vector<int> svi;
vector<int> guess(int n){
ff(i,0,n - 1)ans.pb(0);
ans[0] = ask(1);
ff(i,0,6){
up1.clear();
up2.clear();
ff(j,2,n){
if(j&(1<<i)){
up1.pb(j);
up2.pb(j);
}
}
up2.pb(1);
vector<int> imap = get_pairwise_xor(up1);
vector<int> imad = get_pairwise_xor(up2);
poj.clear();
for(auto c:imad)poj[c]++;
for(auto c:imap)poj[c]--;
poj[0]--;
for(auto c:imad){
if(poj[c] > 0){
svi.pb(ans[0]^c);
skup[ans[0]^c] |= (1<<i);
}
}
}
for(auto c:svi){
ans[skup[c] - 1] = c;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |