# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
334634 | 2020-12-09T15:33:03 Z | inwbear | Stations (IOI20_stations) | C++14 | 1027 ms | 1076 KB |
#include "stations.h" #include<bits/stdc++.h> using namespace std; #define pb push_back #define all(x) (x).begin(),(x).end() #define MEM(x,a) memset((x),a,sizeof((x))) #define F first #define S second #define imx INT_MAX const long long MOD = (long long)(1e9+7); const long long MMX = (long long)(1e18); typedef long long LL; typedef pair<int,int> pii; int rr,nn,co[1005]; bitset<1005>go; vector<int>v[1005]; void dfs(int N) { go[N]=true; bool ed=true; co[N]=(rr*10000)+nn; for(int i=0;i<v[N].size();i++) { if(!go[v[N][i]]) { ed=false; nn++; dfs(v[N][i]); } } if(ed) { rr++; nn=0; } return; } vector<int>label(int n,int k,vector<int>a,vector<int>b) { vector<int>labels(n); for(int i=0;i<n-1;i++) { v[a[i]].pb(b[i]); v[b[i]].pb(a[i]); } dfs(0); for(int i=0;i<n;i++)labels[i]=co[i]; return labels; } int find_next_station(int s,int t,vector<int>c) { int re=-1; if(s/10000==t/10000) { if(s>t) { re=s-1; } else { re=s+1; } } else { for(int i=0;i<c.size();i++) { if(t/10000==c[i]/10000) { re=c[i]; } } } if(re==-1)return s-1; else return re; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 632 KB | Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=10005 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 492 KB | Invalid labels (values out of range). scenario=0, k=1000, vertex=2, label=2560001 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 492 KB | Invalid labels (duplicates values). scenario=1, label=0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1027 ms | 948 KB | Output is correct |
2 | Incorrect | 714 ms | 1076 KB | Wrong query response. |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 512 KB | Invalid labels (duplicates values). scenario=1, label=0 |
2 | Halted | 0 ms | 0 KB | - |