제출 #309419

#제출 시각아이디문제언어결과실행 시간메모리
309419jam_xd_슈퍼트리 잇기 (IOI20_supertrees)C++17
컴파일 에러
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;
    
}

컴파일 시 표준 에러 (stderr) 메시지

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