제출 #381607

#제출 시각아이디문제언어결과실행 시간메모리
381607strawberry2005게임 (IOI14_game)C++14
컴파일 에러
0 ms0 KiB
#include "game.h"
#include<bits.stdc++.h>

void initialize(int n) {

}
vector<int> cnt(1501);
int hasEdge(int u, int v) {
	cnt[max(u,v)]++;
	if(cnt[max(u,v)]==max(u,v)) return 1;
    return(0);
}

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

game.cpp:2:9: fatal error: bits.stdc++.h: No such file or directory
    2 | #include<bits.stdc++.h>
      |         ^~~~~~~~~~~~~~~
compilation terminated.