# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
305702 | 2020-09-23T20:20:59 Z | peti1234 | Stations (IOI20_stations) | C++17 | 1119 ms | 900 KB |
#include <bits/stdc++.h> #include "stations.h" using namespace std; const int c=1002; vector<int> sz[c], sol; bool v[c]; int cnt; void dfs(int a, bool b) { v[a]=1; if (!b) sol[a]=cnt++; for (int i=0; i<sz[a].size(); i++) { int x=sz[a][i]; if (!v[x]) dfs(x, !b); } if (b) sol[a]=cnt++; } vector<int> label(int n, int k, vector<int> x, vector<int> y) { sol.resize(n); for (int i=0; i<n-1; i++) sz[x[i]].push_back(y[i]), sz[y[i]].push_back(x[i]); dfs(0, 0); return sol; } int find_next_station(int s, int t, vector<int> sz) { int x=sz[0], y=sz.back(), si=sz.size(); if (s<x) { if (t<s && t>y) return y; for (int i=0; i<si; i++) if (sz[i]>t) return sz[i]; } if (t>s && t<x) return x; for (int i=si-1; i>0; i--) if (sz[i]<t) return sz[i]; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 504 KB | Invalid labels (duplicates values). scenario=2, label=0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 512 KB | Invalid labels (duplicates values). scenario=3, label=0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 524 KB | Invalid labels (duplicates values). scenario=1, label=0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1119 ms | 900 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 512 KB | Invalid labels (duplicates values). scenario=1, label=0 |
2 | Halted | 0 ms | 0 KB | - |