답안 #65737

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
65737 2018-08-08T16:09:08 Z MiricaMatei 컴퓨터 네트워크 (BOI14_network) C++14
컴파일 오류
0 ms 0 KB
#include "network.h"
#include <vector>

vector<int>d[1005];

void findRoute (int N, int a, int b)
{
  int dist;
  for (int i = 1; i <= n; ++i) {
    if (i == b)
      continue;
    int x = ping(b, i);
    if (i == a)
      dist = x;
    d[x].push_back(i);
  }

  while (a != b) {
    dist--;
    for (auto it:d[dist])
      if (ping(it, a) == 1) {
        travelTo(it);
        a = it;
        break;
      }
  }
}

Compilation message

network.cpp:4:1: error: 'vector' does not name a type
 vector<int>d[1005];
 ^~~~~~
network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:9:24: error: 'n' was not declared in this scope
   for (int i = 1; i <= n; ++i) {
                        ^
network.cpp:15:5: error: 'd' was not declared in this scope
     d[x].push_back(i);
     ^
network.cpp:20:18: error: 'd' was not declared in this scope
     for (auto it:d[dist])
                  ^
grader.c: In function 'int main()':
grader.c:48:11: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf ("%d%d%d%d", &N, &a, &b, &M);
     ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
grader.c:51:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
             scanf("%d", &distance[u][v]);
             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~