# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
696734 | garam1732 | 기지국 (IOI20_stations) | C++14 | 3 ms | 696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> adj[1010];
void dfs(int here, int par, vector<int>& labels) {
for(int there : adj[here]) {
if(there == par) continue;
labels[there] = labels[here] + 1000;
dfs(there, here, labels);
}
}
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
std::vector<int> labels(n);
for(int i = 0; i < n; i++) adj[i].clear();
for(int i = 0; i < u.size(); i++) {
adj[u[i]].push_back(v[i]);
adj[v[i]].push_back(u[i]);
}
int idx = 0;
for(int i = 0; i < n; i++) {
if(adj[i].size() > 2) {
idx = i;
break;
}
}
int d = adj[idx].size();
labels[idx] = 0;
for(int i = 0; i < d; i++) {
int here = adj[idx][i]; labels[here] = i+1;
dfs(here, here, labels);
}
}
int find_next_station(int s, int t, std::vector<int> c) {
if(s%1000 != t%1000) {
if(s) return (s>999 ? s-1000:0);
return t%1000;
}
if(s > t) return s-1000;
return s+1000;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |