제출 #1369075

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

typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

#define pb push_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int) (x).size()
#define endl '\n'

void initialize(int n);
int cnt[200005]={};
int hasEdge(int u, int v)
{
    cnt[max(u, v)]++;
    return cnt[max(u, v)]==max(u, v);
}

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

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