제출 #960325

#제출 시각아이디문제언어결과실행 시간메모리
960325AlfraganusGame (APIO22_game)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> // #include "game.h" #include "grader.cpp" using namespace std; const int N = 3001; int mx[N], K; vector<int> graph[N]; void init(int n, int k) { for (int i = k; i < n; i++) mx[i] = -1; for (int i = 0; i < k; i++) mx[i] = i; K = k; } int add_teleporter(int u, int v) { if (u == v) return u < K; graph[u].push_back(v); queue<int> q; if (mx[v] <= mx[u]) q.push(v), mx[v] = mx[u]; while (!q.empty()) { int x = q.front(); q.pop(); if (x < K) { if (mx[x] >= x) return 1; else return 0; } for (int y : graph[x]) if (mx[y] < mx[x]) mx[y] = mx[x], q.push(y); } return 0; }

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

game.cpp:3:10: fatal error: grader.cpp: No such file or directory
    3 | #include "grader.cpp"
      |          ^~~~~~~~~~~~
compilation terminated.