# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
781045 | kamelfanger83 | 기지국 (IOI20_stations) | C++14 | 736 ms | 656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <vector>
#include <cassert>
#define int long long
using namespace std;
vector<pair<int, int>> prepost;
vector<vector<int>> cons;
int C = 0;
void dfs(int i, int from){
prepost[i].first = C++;
for (int c : cons[i]){
if (c == from) continue;
dfs(c, i);
}
prepost[i].second = C;
}
vector<signed> label(signed n, signed k, vector<signed> u, vector<signed> v) {
vector<signed> labels(n);
cons.clear();
cons.resize(n);
for (int i = 0; i < n - 1; ++i) {
cons[u[i]].push_back(v[i]);
cons[v[i]].push_back(u[i]);
}
prepost.clear();
prepost.resize(n);
C = 0;
dfs(0, -1);
for (int i = 0; i < n; ++i) {
labels[i] = prepost[i].first * 1000 + prepost[i].second;
}
return labels;
}
signed find_next_station(signed s, signed t, vector<signed> c) {
int spre = s / 1000, spost = s % 1000;
int tpre = t / 1000, tpost = t % 1000;
bool isdes = spre < tpre && tpost <= spost;
for (int i = 0; i < c.size(); ++i) {
int cpre = c[i] / 1000, cpost = c[i] % 1000;
if (cpre < spre && spost <= cpost){
if (!isdes) return c[i];
}
else if (cpre <= tpre && tpost <= cpost){
//assert(isdes);
return c[i];
}
}
//assert(false);
//return 0;
}
컴파일 시 표준 에러 (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... |