답안 #475203

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
475203 2021-09-21T12:31:11 Z AdamGS 기지국 (IOI20_stations) C++14
0 / 100
882 ms 596 KB
#include "stations.h"
#include<bits/stdc++.h>
using namespace std;
typedef long double ld;
#define rep(a, b) for(int a = 0; a < (b); ++a)
#define st first
#define nd second
#define pb push_back
#define all(a) a.begin(), a.end()
const int LIM=1e3+7;
int pre[LIM], post[LIM], lpre, lpost;
vector<int>label(int n, int k, vector<int>u, vector<int>v) {
	vector<int>ans(n), V[n];
	rep(i, n-1) {
		V[u[i]].pb(v[i]);
		V[v[i]].pb(u[i]);
	}
	stack<int>q;
	q.push(0);
	while(!q.empty()) {
		int p=q.top();
		if(pre[p]) {
			++lpost;
			post[p]=lpost;
			q.pop();
			continue;
		}
		++lpre;
		pre[p]=lpre;
		for(auto i : V[p]) if(!pre[i]) q.push(i);
	}
	rep(i, n) ans[i]=i;
	return ans;
}
int find_next_station(int s, int t, vector<int>c) {
	int ojciec=-1;
	for(auto i : c) if(pre[i]<pre[s]) ojciec=i;
	for(auto i : c) if(i!=ojciec && pre[i]<=pre[t] && post[i]>=post[t]) return i;
	return ojciec;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 570 ms 488 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 526 ms 520 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 575 ms 528 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 882 ms 480 KB Output is correct
2 Incorrect 737 ms 484 KB Wrong query response.
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 722 ms 596 KB Wrong query response.
2 Halted 0 ms 0 KB -