Submission #104703

#TimeUsernameProblemLanguageResultExecution timeMemory
104703TAMREFComputer Network (BOI14_network)C++11
Compilation error
0 ms0 KiB
#include "network.h" int dist[1005]; void findRoute (int n, int a, int b){ for(int i = 1; i <= n; i++){ if(i == b) continue; dist[i] = ping(i, b); } for(int now = a; now != b;){ for(int k = 1; k <= n; k++){ if(dist[k] + 1 == dist[now] && ping(k, now) == 1){ travelTo(k); now = k break; } } } return; }

Compilation message (stderr)

network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:13:11: error: expected ';' before 'break'
           break;
           ^~~~~
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]);
             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~