제출 #1291960

#제출 시각아이디문제언어결과실행 시간메모리
1291960hssaan_arif게임 (IOI14_game)C++20
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
#include<game.h>
using namespace std;

map<int,int> cnt;   

void initialize(int n){

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

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

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