제출 #677290

#제출 시각아이디문제언어결과실행 시간메모리
677290TruitadepatatesCop and Robber (BOI14_coprobber)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;

//subtask 1

vector<vector<int>> adj(501, vector<int>(501));
vector<int> p(501);
int cop = 0;

void dfs(int actual, int anterior){
  p[actual] = anterior;
  for (auto it: adj[actual]){
    if (it != anterior){
      dfs(it, actual);
    }
  }
}

int start(int n, bool a[501][501]){
  for (int i = 0; i < n; i++){
    for (int j = 0; j < n; j++){
      if (a[i][j] == 1){
        adj[i].push_back(j);
        adj[j].push_back(i);
      }
    }
  }
  dfs(0, -1);
  return 0;
}

int nextMove(int r){
  if (r == cop) return r;
  else{
    while (cop != p[r]){
      r = p[r];
    }
  }
  cop = r;
  return r;
}

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

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