Submission #934359

# Submission time Handle Problem Language Result Execution time Memory
934359 2024-02-27T08:11:04 Z browntoad Toxic Gene (NOI23_toxic) C++17
Compilation error
0 ms 0 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'});
    }

}

Compilation message

toxic.cpp: In function 'void determine_type(int)':
toxic.cpp:22:37: error: cannot convert '<brace-enclosed initializer list>' to 'int'
   22 |         else answer_type({toad, 'S'});
      |                                     ^
      |                                     |
      |                                     <brace-enclosed initializer list>
In file included from toxic.cpp:2:
toxic.h:5:22: note:   initializing argument 1 of 'void answer_type(int, char)'
    5 | void answer_type(int x, char c);
      |                  ~~~~^