Submission #1026417

# Submission time Handle Problem Language Result Execution time Memory
1026417 2024-07-18T05:30:14 Z 김은성(#10945) COVID tests (CEOI24_covid) C++17
22.21 / 100
1764 ms 596 KB
#include <cassert>
#include <cstdio>
#include <string>
#include <vector>
#include <bits/stdc++.h>
using namespace std;

/// You may use:

// The number of students
int N;

// The probability any given student is positive
double P;

// This function performs a test on a subset of samples.
// Its argument is a vector of Booleans of length N,
// where the i-th element is true if the i-th sample should be added to the mix.
// It returns true if (and only if) at least one of the samples in the mix is positive.
bool test_students(std::vector<bool> mask) {
    assert(mask.size() == (size_t)N);

    std::string mask_str(N, ' ');
    for (int i = 0; i < N; i++)
        mask_str[i] = mask[i] ? '1' : '0';

    printf("Q %s\n", mask_str.c_str());
    fflush(stdout);

    char answer;
    scanf(" %c", &answer);
    return answer == 'P';
}

/// You should implement:

// This function will be called once for each test instance.
// It should use test_students to determine which samples are positive.
// It must return a vector of Booleans of length N,
// where the i-th element is true if and only if the i-th sample is positive.
vector<bool> answer, query;
int D;
int td[9] = {3, 5, 7, 9, 11, 13, 15, 17, 19};
double pos[9] = {0.002, 0.006, 0.012, 0.030,
0.040, 0.070, 0.110, 0.160, 0.210};
void solve(int lo, int hi){
    int i;
    for(i=lo; i<=hi; i++)
        query[i] = 1;
    bool x = test_students(query);
    for(i=lo; i<=hi; i++)
        query[i] = 0;
    if(!x)
        return;
    if(lo==hi)
        answer[lo] = 1;
    else{
        if(hi-lo < D){
            for(int i=lo; i<=hi; i++)
                solve(i, i);
        }
        else{
            int i, x = lo-1;
            for(i=1; i<=D; i++){
                solve(x+1, (lo*(D-i) + hi*i)/D);
                x = (lo*(D-i) + hi*i)/D;
            }
        }
    }
}
std::vector<bool> find_positive() {
    answer.resize(N);
    query.resize(N);
    int i;
    for(i=0; i<9; i++){
        if(pos[i] >= P){
            D = td[i];
            break;
        }
    }
    for(i=0; i<N; i++)
        answer[i]= query[i] = 0;
    solve(0, N-1);
    return answer;
}

int main() {
    int T;
    scanf("%d %lf %d", &N, &P, &T);

    // You may perform any extra initialization here.

    for (int i = 0; i < T; i++) {
        std::vector<bool> answer = find_positive();
        assert(answer.size() == (size_t)N);

        std::string answer_str(N, ' ');
        for (int j = 0; j < N; j++)
            answer_str[j] = answer[j] ? '1' : '0';

        printf("A %s\n", answer_str.c_str());
        fflush(stdout);

        char verdict;
        scanf(" %c", &verdict);
        if (verdict == 'W')
            exit(0);
    }

    return 0;
}

Compilation message

Main.cpp: In function 'bool test_students(std::vector<bool>)':
Main.cpp:31:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   31 |     scanf(" %c", &answer);
      |     ~~~~~^~~~~~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:89:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   89 |     scanf("%d %lf %d", &N, &P, &T);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:105:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  105 |         scanf(" %c", &verdict);
      |         ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB translate:wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB translate:wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 34 ms 344 KB Output is correct (P=0.001, F=15.1, Q=16.8) -> 62.05 points
2 Correct 169 ms 344 KB Output is correct (P=0.005256, F=51.1, Q=77.7) -> 29.20 points
3 Correct 340 ms 596 KB Output is correct (P=0.011546, F=94.9, Q=152.2) -> 26.35 points
4 Correct 743 ms 344 KB Output is correct (P=0.028545, F=191.5, Q=337.6) -> 22.21 points
5 Correct 905 ms 344 KB Output is correct (P=0.039856, F=246.3, Q=416.8) -> 23.88 points
6 Correct 1190 ms 344 KB Output is correct (P=0.068648, F=366.2, Q=526.3) -> 32.74 points
7 Correct 1418 ms 344 KB Output is correct (P=0.104571, F=490.3, Q=631.7) -> 41.79 points
8 Correct 1672 ms 344 KB Output is correct (P=0.158765, F=639.1, Q=759.2) -> 51.38 points
9 Correct 1764 ms 340 KB Output is correct (P=0.2, F=731.4, Q=847.8) -> 54.99 points