# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
370469 | casperwang | Xoractive (IZhO19_xoractive) | C++14 | 7 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "interactive.h"
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
#define debug(args...) kout("[ " + string(#args) + " ]", args)
void kout() { cerr << endl; }
template <class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ',kout(b...); }
template <class T> void pary(T L, T R) { while (L != R) cerr << *L << " \n"[++L==R]; }
vector<int> guess(int n) {
vector <int> G;
for (int i = 2; i <= n; i++)
G.pb(i);
vector <int> exp = get_pairwise_xor(G);
G.pb(1);
vector <int> all = get_pairwise_xor(G);
vector <int> ans(n);
set <int> nums;
vector <int> arr, pos(n);
ans[0] = ask(1);
int j = 0;
for (int i = 0; i < exp.size(); i++, j++)
while (all[j] != exp[i])
nums.insert(all[j++] ^ ans[0]);
while (j < all.size()) nums.insert(all[j++] ^ ans[0]);
for (int i : nums) arr.pb(i);
for (int i = 0; (1<<i) < n; i++) {
G.clear();
for (int j = 0; j < n; j++)
if (j & (1<<i)) G.pb(j+1);
vector <int> res = get_pairwise_xor(G);
for (int j = 0; j < n; j++) {
int cnt = 0;
for (int k = 0; k < n; k++) {
int val = arr[j] ^ arr[k];
if (res[res.size()-1] >= val && *lower_bound(res.begin(), res.end(), val) == val)
cnt++;
}
if (cnt >= G.size()) pos[j] += (1<<i);
}
}
for (int i = 0; i < n; i++)
ans[pos[i]] = arr[i];
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |