# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1044342 | dilanyan | COVID tests (CEOI24_covid) | C++17 | 0 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//-------------dilanyan------------\\
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
//------------------Kargpefines--------------------\\
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set
void KarginSet(string name = "") {
ios_base::sync_with_stdio(false); cin.tie(NULL);
if (name.size()) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
//-------------------KarginConstants------------------\\
const ll mod = 1e9 + 7;
const ll inf = 2e9;
//-------------------KarginCode-----------------------\\
const int N = 500005, M = 1000005;
int n, p;
void KarginSolve() {
vector<bool> ans(n, 0);
vector<bool> ask(n, 0);
while (true) {
int l = 0, r = N, x = 0;
while (r - l > 1) {
int m = (l + r) / 2;
for (int i = 0;i < N;i++) {
if (i < l || i >= m) ask[i] = false;
else {
if (ans[i]) ask[i] = false;
else ask[i] = true;
}
}
if (count(ask.begin(), ask.end(), 1) == 0) l = m;
else {
cout << "Q ";
for (int i : ask) cout << i;
cout << endl;
char c; cin >> c;
if (c == 'P') r = m;
else l = m;
}
}
if (l == N - 1) {
fill(ask.begin(), ask.end(), false);
ask[l] = true;
cout << "Q ";
for (int i : ask) cout << i;
cout << endl;
char c; cin >> c;
if (c == 'P') ans[l] = true;
break;
}
ans[l] = true;
}
cout << "A ";
for (int i = 0;i < n;i++) cout << ans[i];
cout << endl;
char c; cin >> c;
if (c == 'W') exit(0);
}
int main() {
KarginSet();
int test = 1;
cin >> n >> p >> test;
while (test--) {
KarginSolve();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |