結果

問題 No.2242 Cities and Teleporters
ユーザー nono00nono00
提出日時 2023-03-11 03:08:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,217 ms / 3,000 ms
コード長 1,905 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 88,652 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-09-18 06:08:21
合計ジャッジ時間 21,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 988 ms
31,384 KB
testcase_06 AC 910 ms
31,360 KB
testcase_07 AC 1,004 ms
31,360 KB
testcase_08 AC 1,210 ms
31,476 KB
testcase_09 AC 1,217 ms
31,396 KB
testcase_10 AC 729 ms
31,360 KB
testcase_11 AC 725 ms
31,424 KB
testcase_12 AC 731 ms
31,432 KB
testcase_13 AC 779 ms
31,344 KB
testcase_14 AC 893 ms
31,360 KB
testcase_15 AC 795 ms
31,360 KB
testcase_16 AC 789 ms
31,360 KB
testcase_17 AC 946 ms
31,488 KB
testcase_18 AC 760 ms
30,976 KB
testcase_19 AC 720 ms
30,848 KB
testcase_20 AC 756 ms
29,952 KB
testcase_21 AC 745 ms
30,336 KB
testcase_22 AC 707 ms
30,080 KB
testcase_23 AC 726 ms
31,360 KB
testcase_24 AC 719 ms
31,352 KB
testcase_25 AC 723 ms
31,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>

int main() {
    int n;
    std::cin >> n;
    int log = 1;
    while ((1 << log) < n) {
        log++;
    }
    std::vector<int> h(n), t(n);
    std::vector<std::pair<int, int>> event;
    event.reserve(2 * n);
    for (int i = 0; i < n; i++) {
        std::cin >> h[i];
        event.emplace_back(h[i], ~i);
    }
    for (int i = 0; i < n; i++) {
        std::cin >> t[i];
        event.emplace_back(t[i], i);
    }
    std::sort(event.begin(), event.end());
    std::vector<std::vector<int>> parent(n, std::vector<int>(log + 1, -1));
    int max = -1;
    int max_index = -1;
    for (auto [x, i]: event) {
        // h
        if (i < 0) {
            i = ~i;
            if (max < t[i]) {
                max = t[i];
                max_index = i;
            }
        } else {
        // t
            if (x < max) {
                parent[i][0] = max_index;
            }
        }
    }

    for (int j = 0; j < log; j++) {
        for (int i = 0; i < n; i++) {
            int mid_parent = parent[i][j];
            if (mid_parent >= 0) {
                parent[i][j + 1] = parent[mid_parent][j];
            }
        }
    }

    int q;
    std::cin >> q;
    while (q--) {
        int a, b;
        std::cin >> a >> b;
        a--; b--;

        // a -> b
        // h[b] <= t[a]となるまでdoublingで上がっていく
        int count = 0;
        for (int i = log; i >= 0; i--) {
            if (parent[a][i] != -1) {
                if (t[parent[a][i]] < h[b]) {
                    a = parent[a][i];
                    count += (1 << i);
                }
            }
        }
        if (h[b] <= t[a]) {
            std::cout << 1 << '\n';
        } else if (parent[a][0] == -1) {
            std::cout << -1 << '\n';
        } else {
            std::cout << count + 2 << '\n';
        }
    }
}
0