Submission #1062733

#TimeUsernameProblemLanguageResultExecution timeMemory
1062733bleahbleahKoala Game (APIO17_koala)C++17
0 / 100
1 ms344 KiB
#include "koala.h" #include <bits/stdc++.h> #define all(x) (x).begin(),(x).end() using namespace std; using ll = long long; using ld = long double; //#define int ll #define sz(x) ((int)(x).size()) using pii = pair<int,int>; using tii = tuple<int,int,int>; int minValue(int N, int W) { // TODO: Implement Subtask 1 solution here. // You may leave this function unmodified if you are not attempting this // subtask. return 0; } int maxValue(int N, int W) { // TODO: Implement Subtask 2 solution here. // You may leave this function unmodified if you are not attempting this // subtask. return 0; } namespace Query { int B[1001], R[1001]; vector<int> query(vector<int> a) { for(int i = 0; i < sz(a); i++) B[i] = a[i]; playRound(B, R); vector<int> r; for(int i = 0; i < sz(a); i++) r.emplace_back(R[i] > B[i]); return r; } } using Query::query; int greaterValue(int N, int W) { int l = 1, r = min(9, W / 2); while(r - l > 1) { int mid = (l + r) >> 1; vector<int> t(N, 0); t[0] = mid; t[1] = mid; auto q = query(t); if(q[0] + q[1] == 1) { return q[0] == 1; } if(q[0] + q[1] == 2) l = mid; else r = mid; } return 0; } void allValues(int N, int W, int *P) { if (W == 2*N) { // TODO: Implement Subtask 4 solution here. // You may leave this block unmodified if you are not attempting this // subtask. } else { // TODO: Implement Subtask 5 solution here. // You may leave this block unmodified if you are not attempting this // subtask. } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...