Submission #546431

#TimeUsernameProblemLanguageResultExecution timeMemory
546431bluePipes (CEOI15_pipes)C++17
Compilation error
0 ms0 KiB
#include <iostream> using namespace std; const int mx = 100'000; int main() { vi edge[1+mx]; for(int i = 1; i < mx; i++) { edge[i].push_back(i+1); edge[i+1].push_back(i); } }

Compilation message (stderr)

pipes.cpp: In function 'int main()':
pipes.cpp:8:2: error: 'vi' was not declared in this scope
    8 |  vi edge[1+mx];
      |  ^~
pipes.cpp:11:3: error: 'edge' was not declared in this scope
   11 |   edge[i].push_back(i+1);
      |   ^~~~