Submission #471669

#TimeUsernameProblemLanguageResultExecution timeMemory
471669nickmet2004Xoractive (IZhO19_xoractive)C++11
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include "interactor.h" using namespace std; vector<int> geuess(int n){ int a = ask(1); vector<int> X , Y; map<int , int> Z; vector<int> ans; ans.resize(n); for(int i = 0; i< 7; ++i){ for(int k = 2; k <= n; ++k){ if(k>>i&1)X.emplace_back(k); } Y = X; Y.emplace_back(1); X = get_pairwise_xor(X); Y = get_pairwise_xor(Y); map<int , int> A; for(int x : X) A[x]=1; for(int x : Y){ if(!A[x] && x) Z[x] += 1 << i; } } for(auto x : Z) ans[x.second] = x.first; return ans; }

Compilation message (stderr)

Xoractive.cpp:2:10: fatal error: interactor.h: No such file or directory
    2 | #include "interactor.h"
      |          ^~~~~~~~~~~~~~
compilation terminated.