Submission #1369075

#TimeUsernameProblemLanguageResultExecution timeMemory
1369075eyadoozGame (IOI14_game)C++20
Compilation error
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);
}

Compilation message (stderr)

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