답안 #306890

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
306890 2020-09-26T13:44:28 Z giorgikob 기지국 (IOI20_stations) C++14
0 / 100
869 ms 880 KB
#include "stations.h"
#include <vector>
#include<bits/stdc++.h>
#define ll long long
#define ff first
#define ss second
#define pb push_back
using namespace std;

const int N = 1e3+5;

/*int cnt = 0;
int c = 0;
int answer[N][N];

void dfs(int x){
    fix[x] = 1;
    answer[root][x] = c;
    for(auto to : gr[x]){
        if(fix[to]) continue;
        dfs(to);
    }
}*/

std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
	std::vector<int> labels(n);
	for (int i = 0; i < n; i++) {
		labels[i] = i;
		//cnt++;
	}

	/*for(int i = 0; i < n; i++){
        int x = u[i];
        int y = v[i];
        gr[x].pb(y);
        gr[y].pb(x);
	}

	for(int x = 0; x < n; x ++){
        fix[x] = 1;
        for(auto to : gr[x]){
            dfs(to);
        }
	}*/
	return labels;
}

int find_next_station(int s, int t, std::vector<int> c) {
    if(c.size() == 1) return c[0];
    if(s > t) return c[0];
	return c[1];
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 625 ms 880 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 466 ms 872 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 518 ms 768 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 869 ms 640 KB Output is correct
2 Incorrect 688 ms 652 KB Wrong query response.
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 525 ms 768 KB Wrong query response.
2 Halted 0 ms 0 KB -