답안 #1044350

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1044350 2024-08-05T09:01:05 Z dilanyan COVID tests (CEOI24_covid) C++17
0 / 100
7000 ms 344 KB
//-------------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;
double 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;
}

Compilation message

Main.cpp:1:1: warning: multi-line comment [-Wcomment]
    1 | //-------------dilanyan------------\\
      | ^
Main.cpp:8:1: warning: multi-line comment [-Wcomment]
    8 | //------------------Kargpefines--------------------\\
      | ^
Main.cpp:27:1: warning: multi-line comment [-Wcomment]
   27 | //-------------------KarginConstants------------------\\
      | ^
Main.cpp:32:1: warning: multi-line comment [-Wcomment]
   32 | //-------------------KarginCode-----------------------\\
      | ^
Main.cpp: In function 'void KarginSolve()':
Main.cpp:43:27: warning: unused variable 'x' [-Wunused-variable]
   43 |         int l = 0, r = n, x = 0;
      |                           ^
Main.cpp: In function 'void KarginSet(std::string)':
Main.cpp:22:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   22 |         freopen((name + ".in").c_str(), "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:23:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   23 |         freopen((name + ".out").c_str(), "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5932 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 7059 ms 344 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 7061 ms 344 KB Time limit exceeded
2 Halted 0 ms 0 KB -