제출 #744982

#제출 시각아이디문제언어결과실행 시간메모리
744982irmuun경찰관과 강도 (BOI14_coprobber)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define pb push_back #define ll long long #define ff first #define ss second #define all(s) s.begin(),s.end() vector<int>adj[500]; int start(int N,bool a[500][500]){ int cnt=0; for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ if(i==j) continue; if(a[i][j]==true){ adj[i].pb(j); cnt++; } } } if(cnt!=2*(N-1)){ return -1; } return 0; } vector<int>used(500),p(500); int cur=0,f=0; void dfs(int u){ used[u]=1; for(auto v:adj[u]){ if(used[v]==0){ p[v]=u; dfs(v); } } } int nextmove(int r){ if(f==0){ dfs(0); f=1; } if(p[r]==cur){ return cur; } while(p[r]!=cur){ r=p[r]; } return cur=r; }

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

/usr/bin/ld: /tmp/ccucCqXH.o: in function `main':
grader.cpp:(.text.startup+0x2be): undefined reference to `nextMove(int)'
collect2: error: ld returned 1 exit status