Submission #218278

#TimeUsernameProblemLanguageResultExecution timeMemory
218278dolphingarlicComputer Network (BOI14_network)C++14
100 / 100
131 ms4348 KiB
#include"network.h" #include<vector> int d[1001]; std::vector<int> f[1001]; void findRoute(int N, int a, int b) { for(int i=1;i<=N;i++){ if(i==b)continue; d[i]=ping(i,b); f[d[i]].push_back(i); } for(int i=d[a];i;i--)for(int j:f[i-1])if(!ping(a,j)){ travelTo(j); a=j; break; } travelTo(b); }

Compilation message (stderr)

network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:7:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
         if(i==b)continue;
         ^~
network.cpp:8:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   d[i]=ping(i,b);
   ^
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]);
             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...