# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
304965 | galca | 기지국 (IOI20_stations) | C++14 | 1253 ms | 1056 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <vector>
using namespace std;
int label_nodes(vector<vector<int>>& nodes, vector<int>& labels, bool isMin, int id, int me, int father) {
if ((father != -1) && (nodes[me].size() == 1)) {
// a leaf
labels[me] = id;
return id+1;
}
if (isMin) {
labels[me] = id;
int next_id = id + 1;
for (int i = 0; i < nodes[me].size(); i++) {
if (nodes[me][i] != father) {
next_id = label_nodes(nodes, labels, !isMin, next_id, nodes[me][i], me);
}
}
return next_id;
}
else {
int next_id = id;
for (int i = 0; i < nodes[me].size(); i++) {
if (nodes[me][i] != father) {
next_id = label_nodes(nodes, labels, !isMin, next_id, nodes[me][i], me);
}
}
labels[me] = next_id;
return next_id + 1;
컴파일 시 표준 에러 (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... |