# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1062856 | 2024-08-17T11:18:56 Z | bleahbleah | 코알라 (APIO17_koala) | C++17 | 131 ms | 600 KB |
#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>; 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 minValue(int N, int W) { vector<int> a(N); a[0] = 1; auto b = query(a); for(int i = 0; i < N; i++) if(b[i] == 0) return i; } 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; } int greaterValue(int N, int W) { int l = 1, r = min(15, W / 2); for(int mid = 1; mid <= 8; mid++) { 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 assert(false); } return 1; } 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. } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 344 KB | Output is correct |
2 | Correct | 3 ms | 464 KB | Output is correct |
3 | Correct | 3 ms | 344 KB | Output is correct |
4 | Correct | 3 ms | 344 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 131 ms | 460 KB | Output is partially correct |
2 | Partially correct | 124 ms | 344 KB | Output is partially correct |
3 | Partially correct | 119 ms | 468 KB | Output is partially correct |
4 | Partially correct | 111 ms | 344 KB | Output is partially correct |
5 | Partially correct | 121 ms | 600 KB | Output is partially correct |
6 | Partially correct | 115 ms | 448 KB | Output is partially correct |
7 | Partially correct | 112 ms | 452 KB | Output is partially correct |
8 | Partially correct | 118 ms | 344 KB | Output is partially correct |
9 | Partially correct | 121 ms | 344 KB | Output is partially correct |
10 | Partially correct | 112 ms | 464 KB | Output is partially correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |