Submission #300977

#TimeUsernameProblemLanguageResultExecution timeMemory
300977zecookiezComputer Network (BOI14_network)C++14
50 / 100
134 ms8184 KiB
#include <bits/stdc++.h> #include <network.h> using namespace std; template<class C>constexpr int len(const C&c){return int(c.size());} const int MAXN = 1001; vector<int> dist[MAXN]; void findRoute(int N, int a, int b){ int c = ping(a, b); dist[c].push_back(b); for(int v, i = 1; i <= N; ++i){ if(i == a) continue; v = i == b ? c : ping(a, i); if(v < c) dist[v].push_back(i); } int prev = a; for(int x = 0; x < c; ++x){ for(int nxt : dist[x]){ if(x + 1 + ping(nxt, b) == c && ping(prev, nxt) == 0){ travelTo(nxt); prev = nxt; break; } } } travelTo(b); }

Compilation message (stderr)

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]
   48 |     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]
   51 |             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...