답안 #306097

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
306097 2020-09-24T13:58:09 Z SorahISA 기지국 (IOI20_stations) C++17
0 / 100
1 ms 384 KB
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;

using pii = pair<int, int>;
template<typename T>
using Prior = priority_queue<T>;
template<typename T>
using prior = priority_queue<T, vector<T>, greater<T>>;

#define X first
#define Y second
#define ALL(x) (x).begin(), (x).end()
#define eb emplace_back
#define pb push_back

const int maxn = 1000 + 5;

int lstvis = 0;
vector<int> adj[maxn], lab;

void dfs(int now, int lst) {
    cout << lab[now] << " ";
    for (auto x : adj[now]) {
        if (x != lst) lab[x] = lab[now] + 1, lstvis = x, dfs(x, now);
    }
}

vector<int> label(int n, int k, vector<int> u, vector<int> v) {
    for (int i = 0; i < maxn; ++i) adj[i].clear();
    lab.resize(n);
    
    for (int i = 0; i < n-1; ++i) {
        adj[u[i]].eb(v[i]), adj[v[i]].eb(u[i]);
    }
    dfs(0, -1), cout << "\n";
    lab[lstvis] = 0, dfs(lstvis, -1), cout << "\n";
    
	return lab;
}

int find_next_station(int s, int t, vector<int> c) {
    return s > t ? c.front() : c.back();
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Invalid length of array as the response of 'label'. scenario=0, n=10, len=0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Invalid length of array as the response of 'label'. scenario=0, n=996, len=0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Invalid length of array as the response of 'label'. scenario=0, n=2, len=0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Invalid length of array as the response of 'label'. scenario=0, n=2, len=0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB Invalid length of array as the response of 'label'. scenario=0, n=3, len=0
2 Halted 0 ms 0 KB -