답안 #468367

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
468367 2021-08-27T21:17:48 Z kessido 기지국 (IOI20_stations) C++17
0 / 100
816 ms 616 KB
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;

#define ll long long int
#define vll vector<ll>
#define vi vector<int>
#define vvi vector<vi>
#define pi pair<int, int>
#define pll pair<ll, ll>
#define all(x) (x).begin(), (x).end()
#define fori(i,n) for(int i = 0; i < int(n); ++i)

vi label(int n, int k, vi u, vi v) {
    vvi e(n);
    fori(i,n-1){
        e[u[i]].push_back(v[i]);
        e[v[i]].push_back(u[i]);
    }
    int cur_label = 0;
    vi res(n, -1);
    auto dfs = [&](auto& self, int i, int parent, int depth) -> void {
        if(depth) res[i] = cur_label++;
        for(int j : e[i]) {
            if(j==parent) continue;
            self(self, j, i, depth^1);
        }
        if(!depth) res[i] = cur_label++;
    };
    dfs(dfs, 0, -1, 1);
    assert(cur_label==n);
    return res;
}

int find_next_station(int s, int t, vi c) {
    if(c.size() == 1) return c[0];
    if(s==t) return s;

    sort(all(c));

    if(s == 0) {
        // root
        int i = 0;
        while(i + 1 < c.size() && c[i + 1] >= t) i++;
        return c[i];
    }

    if(c.back() < s) {
        // case 1, s "end"
        if(t > s || t < *c.begin()) return *c.begin();
        int i = 1;
        while(i < c.size() && c[i] >= t) i++;
        return c[i-1];
    }else{
        // case 2, s is "start"
        if(t < s || c[c.size()-2] < t) return c.back();
        int i = 0;
        while(i + 2 < c.size() && c[i + 1] >= t) i++;
        return c[i];
    }
}

Compilation message

stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:44:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   44 |         while(i + 1 < c.size() && c[i + 1] >= t) i++;
      |               ~~~~~~^~~~~~~~~~
stations.cpp:52:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |         while(i < c.size() && c[i] >= t) i++;
      |               ~~^~~~~~~~~~
stations.cpp:58:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   58 |         while(i + 2 < c.size() && c[i + 1] >= t) i++;
      |               ~~~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 674 ms 596 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 464 ms 616 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 615 ms 484 KB Wrong query response.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 816 ms 400 KB Output is correct
2 Incorrect 637 ms 484 KB Wrong query response.
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 576 ms 616 KB Wrong query response.
2 Halted 0 ms 0 KB -