Submission #309419

#TimeUsernameProblemLanguageResultExecution timeMemory
309419jam_xd_Connecting Supertrees (IOI20_supertrees)C++17
Compilation error
0 ms0 KiB
#include "bits/stc++.h" using namespace std; int construct (int [][] p){ deque<vector<int> >resp; for(int i=0;i<p.size();i++){ deque<int>jaja; for(int j=0;j<p.size();j++){ if(i == 0 and j != 0) jaja.push_back(1); else if(i != 0 and j == 0) jaja.push_back(1); else if(i == 0 and j == 0)jaja.push_back(0); } resp.push_back(row); } build(resp); return 1; }

Compilation message (stderr)

supertrees.cpp:1:10: fatal error: bits/stc++.h: No such file or directory
    1 | #include "bits/stc++.h"
      |          ^~~~~~~~~~~~~~
compilation terminated.