Submission #151884

# Submission time Handle Problem Language Result Execution time Memory
151884 2019-09-05T09:56:05 Z Kamisama Computer Network (BOI14_network) C++14
Compilation error
0 ms 0 KB
#include <cstdio>
#include <vector>
#include "network.h"
using namespace std;
const int maxn=1e3+7;

vector<int> disList[maxn],path;

void findRoute(int n, int a, int b){
  int pathLength=ping(a,b)+1;
  for(int i=1;i<=n;i++) if(i!=a && i!=b) disList[ping(a,i)].push_back(i);
  path.push_back(b);
  for(;lengthPath>0;pathLength--){
    for(int c: disList[lengthPath]) if(!ping(c,b)){
      b=c;
      path.push_back(b);
      break;
    }
  }
  for(int i=(int)path.size()-1;i>=0;i--) travelTo(path[i]);
}

Compilation message

network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:13:8: error: 'lengthPath' was not declared in this scope
   for(;lengthPath>0;pathLength--){
        ^~~~~~~~~~
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]);
             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~