Submission #934362

# Submission time Handle Problem Language Result Execution time Memory
934362 2024-02-27T08:12:23 Z browntoad Toxic Gene (NOI23_toxic) C++17
0 / 100
0 ms 344 KB
#include <bits/stdc++.h>
#include "toxic.h"
using namespace std;
 
void determine_type(int n){
 
    vector<int> T, N, S;
    int tid = -1;
    for (int i = 1; i <= n; i++){
        int ret = query_sample({i});
        if (ret == 0){
            tid = i;
            answer_type(i, 'T');
        }
        else T.push_back(i);
    }
    for (int toad:T){
        int ret = query_sample({toad, tid});
        if (ret == 0){
            answer_type(toad, 'N');
        }
        else answer_type(toad, 'S');
    }
 
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -