# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
385696 | 2021-04-04T18:37:49 Z | Ahmadsm2005 | 기지국 (IOI20_stations) | C++14 | 935 ms | 884 KB |
#include<bits/stdc++.h> #include "stations.h" using namespace std; int C; vector<vector<int>>edges; vector<int>labels; void DFS(int v,int u=-1){ int INIT=C; for(int i=0;i<edges[v].size();i++){ C+=10001; if(edges[v][i]!=u) DFS(edges[v][i],v); C-=10001; C++; } C=INIT; labels[v]=C; C+=1001; } vector<int>label(int n,int k,vector<int>u,vector<int>v){ labels.clear(); labels.resize(n); edges.resize(n); for(int i=0;i<u.size();i++){ edges[u[i]].push_back(v[i]),edges[v[i]].push_back(u[i]); } DFS(0); C=0; edges.clear(); return labels; } int find_next_station(int s, int t,vector<int>c){ if((s/10001)>(t/10001)) return c[0]; for(int i=c.size();i>=0;i--){ if(c[i]%1001<=t%1001) return c[i]; } return c[0]; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 492 KB | Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=51009 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 492 KB | Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=10001 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 500 KB | Invalid labels (values out of range). scenario=1, k=1000000, vertex=1, label=2510370 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 935 ms | 756 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 702 ms | 884 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |