답안 #430724

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
430724 2021-06-17T02:48:46 Z JUANDI321 기지국 (IOI20_stations) C++17
0 / 100
893 ms 748 KB
#include "stations.h"
#include <vector>
#include <iostream>

using namespace std;
vector<vector<int>> g(1010);
vector<int> l(1010);
bool ch[1010];

void dfs(int node, int i)
{
	//if(ch[node])return;
	ch[node]=true;
	l[i] = node;
	//cout<<node<<endl;
	for(int y : g[node])
	{
		if(!ch[y])
		{
			dfs(y, i+1);
		}
	}
}
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
	vector<int> labels(n);
	
	for(int i = 0; i < n-1; i++)
	{
		g[u[i]].push_back(v[i]);
		g[v[i]].push_back(u[i]);
	}
	int spn = 0;
	for(int i = 0; i < n; i++)
	{
		if(g[i].size() == 1)
		{
			spn = i;
			break;
		}
	}
	dfs(spn, 0);
    //cout<<"hola"<<endl;
	for (int i = 0; i < n; i++) {
		labels[l[i]] = i;
		//cout<<"l[i] "<<l[i]<<" i "<<i<<endl;
	}
	return labels;
}

int find_next_station(int s, int t, vector<int> c) 
{
	if(t>s)return s+1;
	return s-1;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 456 KB Invalid labels (duplicates values). scenario=1, label=0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 584 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 748 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 893 ms 400 KB Output is correct
2 Incorrect 697 ms 516 KB Wrong query response.
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 660 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -