제출 #1131151

#제출 시각아이디문제언어결과실행 시간메모리
1131151TsaganaXoractive (IZhO19_xoractive)C++20
100 / 100
3 ms508 KiB
#include<bits/stdc++.h> #define all(x) x.begin(), x.end() #define pq priority_queue #define eb emplace_back #define lb lower_bound #define ub upper_bound #define pb push_back #define pp pop_back #define F first #define S second #include "interactive.h" using namespace std; vector<int> guess (int n) { vector<int> a(n); a[0] = ask(1); map<int, int> ans; for (int i = 0; (1 << i) <= n; i++) { vector<int> p; for (int j = 2; j <= n; j++) if (j & (1 << i)) p.pb(j); auto g1 = get_pairwise_xor(p); p.pb(1); auto g2 = get_pairwise_xor(p); map<int, int> mp; for (auto x: g2) mp[x]++; for (auto x: g1) mp[x]--; for (auto x: mp) if (x.S) ans[x.F ^ a[0]] |= (1 << i); } for (auto x: ans) a[x.S - 1] = x.F; return a; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...