Submission #934361

#TimeUsernameProblemLanguageResultExecution timeMemory
934361browntoadToxic Gene (NOI23_toxic)C++17
Compilation error
0 ms0 KiB
#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 (stderr)

toxic.cpp: In function 'void determine_type(int)':
toxic.cpp:13:33: error: cannot convert '<brace-enclosed initializer list>' to 'int'
   13 |             answer_type({i, 'T'});
      |                                 ^
      |                                 |
      |                                 <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);
      |                  ~~~~^
toxic.cpp:20:36: error: cannot convert '<brace-enclosed initializer list>' to 'int'
   20 |             answer_type({toad, 'N'});
      |                                    ^
      |                                    |
      |                                    <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);
      |                  ~~~~^
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);
      |                  ~~~~^