Submission #775130

#TimeUsernameProblemLanguageResultExecution timeMemory
775130cheat_when_I_was_youngShopping (JOI21_shopping)C++17
10 / 100
70 ms608 KiB
#include "Anna.h" #include "bits/stdc++.h" using namespace std; namespace { int n, l, r, ans; } // namespace void InitA(int N, int L, int R) { ::n = N; ::l = L; ::r = R; for (int i = 0; i < 18; ++i) SendA((l >> i) & 1); } void ReceiveA(bool x) { if (l <= r && x) ans = l; ++l; } int Answer() { return ans; }
#include "Bruno.h" #include "bits/stdc++.h" using namespace std; namespace { int n, l, cnt, ans = 2e9; vector<int> p; } // namespace void InitB(int N, vector<int> P) { ::n = N; ::p = P; } void ReceiveB(bool y) { if (y) l |= 1 << cnt; ++cnt; if (cnt < 18) return; for (int i = l; i < n; ++i) { if (ans <= p[i]) { SendB(0); continue; } ans = p[i]; SendB(1); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...