제출 #1125834

#제출 시각아이디문제언어결과실행 시간메모리
1125834mingga경찰관과 강도 (BOI14_coprobber)C++17
컴파일 에러
0 ms0 KiB
#include "bits/stdc++.h" #include "coprobber.h" using namespace std; #define ln "\n" #define pb push_back #define fi first #define se second #define all(x) (x).begin(), (x).end() #define sz(x) ((int)(x).size()) // #define int long long const int MOD = 1e9 + 7; const int inf = 2e9; bool w[505][505]; bool f[505][505][2]; int vis[505][505][2], opt[505][505]; vector<int> g[505]; int pre; bool calc(int u, int v, int steps) { if(u == v) { return f[u][v][steps] = 1; } if(vis[u][v][steps]) return f[u][v][steps]; vis[u][v][steps] = 1; if(steps & 1) { bool ans = 0; for(int x : g[u]) { if(vis[x][v][0] == 1) { continue; } if(calc(x, v, 0)) opt[u][v] = x; ans = ans | calc(x, v, 0); } if(vis[u][v][0] != 1) ans = ans | calc(u, v, 0); if(calc(u, v, 0)) opt[u][v] = u; vis[u][v][steps] = 2; return f[u][v][steps] = ans; } else { bool ans = 1; for(int x : g[v]) { if(vis[u][x][1] == 1) return 0; ans = ans & calc(u, x, 1); } vis[u][v][steps] = 2; return f[u][v][steps] = ans; } } int start(int N, bool A[505][505]) { int n = N; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { w[i][j] = A[i][j]; if(w[i][j]) { g[i].pb(j); } } } int ans = -1; for(int i = 0; i < n; i++) { bool cur = 1; for(int j = 0; j < n; j++) { cur = cur & calc(i, j, 1); } if(cur) { pre = i; return i; } } return ans; } int nextMove(int x) { pre = opt[pre][x]; return pre; }

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

/usr/bin/ld: /tmp/ccAiji9Y.o: in function `main':
grader.cpp:(.text.startup+0x155): undefined reference to `start(int, bool (*) [500])'
collect2: error: ld returned 1 exit status