Submission #151884

#TimeUsernameProblemLanguageResultExecution timeMemory
151884KamisamaComputer Network (BOI14_network)C++14
Compilation error
0 ms0 KiB
#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 (stderr)

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]);
             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~