Submission #1205259

#TimeUsernameProblemLanguageResultExecution timeMemory
1205259notmeStations (IOI20_stations)C++20
0 / 100
306 ms580 KiB
#include "stations.h" #include <bits/stdc++.h> #define pb push_back using namespace std; const int maxn = 2e3 + 10; vector < int > g[maxn]; int degree[maxn]; int depth[maxn], used[maxn]; void dfs(int beg, int h) { used[beg]= 1; depth[beg] = h; for (auto nb: g[beg]) { if(used[nb])continue; dfs(nb, h+1); } } std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) { memset(degree, 0, sizeof(n)); memset(used, 0, sizeof(used)); for (int i = 0; i < n; ++ i) g[i].clear(); for (int i = 0; i < n-1; ++ i) { g[u[i]].pb(v[i]); g[v[i]].pb(u[i]); degree[u[i]] ++; degree[v[i]] ++; } int root = 0; for (int i = 0; i < n; ++ i) { if(degree[i] == 2)continue; root = i; break; } dfs(root, 0); std::vector<int> labels(n); for (int i = 0; i < n; i++) { labels[i] = depth[i]; } return labels; } int find_next_station(int s, int t, std::vector<int> c) { if(t > s) { for (auto x: c) { if(x > s)return x; } } else { for (auto x: c) { if(x < s)return x; } } } /** 2 7 10000000 0 1 0 2 0 6 2 3 2 4 3 5 4 6 3 0 4 1 2 3 4 2 4 3 2 7 10000000 0 1 0 2 0 6 2 3 2 4 3 5 4 6 3 0 1 3 0 3 4 2 4 3 2 */

Compilation message (stderr)

stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:66:1: warning: control reaches end of non-void function [-Wreturn-type]
   66 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...