結果

問題 No.1382 Travel in Mitaru city
ユーザー んんんんんん
提出日時 2022-12-28 18:41:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 212,056 KB
実行使用メモリ 10,444 KB
最終ジャッジ日時 2024-11-23 20:21:28
合計ジャッジ時間 10,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 54 ms
5,248 KB
testcase_07 AC 45 ms
5,248 KB
testcase_08 AC 23 ms
5,248 KB
testcase_09 AC 64 ms
5,248 KB
testcase_10 AC 57 ms
5,248 KB
testcase_11 AC 82 ms
6,912 KB
testcase_12 AC 87 ms
6,912 KB
testcase_13 AC 92 ms
7,168 KB
testcase_14 AC 77 ms
6,820 KB
testcase_15 AC 79 ms
6,784 KB
testcase_16 AC 128 ms
9,088 KB
testcase_17 AC 126 ms
8,960 KB
testcase_18 AC 128 ms
8,960 KB
testcase_19 AC 125 ms
8,960 KB
testcase_20 AC 122 ms
8,960 KB
testcase_21 AC 128 ms
8,960 KB
testcase_22 AC 127 ms
8,960 KB
testcase_23 AC 123 ms
8,960 KB
testcase_24 AC 120 ms
8,960 KB
testcase_25 AC 122 ms
8,960 KB
testcase_26 AC 131 ms
8,960 KB
testcase_27 AC 129 ms
8,960 KB
testcase_28 AC 127 ms
8,960 KB
testcase_29 AC 126 ms
8,960 KB
testcase_30 AC 129 ms
8,960 KB
testcase_31 AC 90 ms
8,064 KB
testcase_32 AC 116 ms
9,088 KB
testcase_33 AC 106 ms
8,704 KB
testcase_34 AC 70 ms
7,168 KB
testcase_35 AC 49 ms
5,888 KB
testcase_36 AC 87 ms
8,192 KB
testcase_37 AC 15 ms
5,248 KB
testcase_38 AC 96 ms
8,704 KB
testcase_39 AC 24 ms
5,248 KB
testcase_40 AC 73 ms
7,296 KB
testcase_41 AC 79 ms
7,936 KB
testcase_42 AC 100 ms
8,832 KB
testcase_43 AC 88 ms
8,064 KB
testcase_44 AC 36 ms
5,248 KB
testcase_45 AC 80 ms
7,552 KB
testcase_46 AC 34 ms
5,248 KB
testcase_47 AC 116 ms
10,032 KB
testcase_48 AC 77 ms
7,936 KB
testcase_49 AC 124 ms
10,444 KB
testcase_50 AC 57 ms
6,656 KB
testcase_51 AC 90 ms
8,192 KB
testcase_52 AC 106 ms
9,088 KB
testcase_53 AC 25 ms
5,248 KB
testcase_54 AC 50 ms
5,888 KB
testcase_55 AC 99 ms
8,832 KB
testcase_56 AC 33 ms
5,248 KB
testcase_57 AC 66 ms
7,168 KB
testcase_58 AC 11 ms
5,248 KB
testcase_59 AC 33 ms
5,248 KB
testcase_60 AC 98 ms
8,704 KB
testcase_61 AC 4 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 14 ms
5,248 KB
testcase_64 AC 6 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 3 ms
5,248 KB
testcase_67 AC 4 ms
5,248 KB
testcase_68 AC 6 ms
5,248 KB
testcase_69 AC 3 ms
5,248 KB
testcase_70 AC 7 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N, M, S, T;
    cin >> N >> M >> S >> T;
    S--; T--;
    vector<int> p(N);
    for (int i = 0; i < N; i++) cin >> p[i];

    vector<vector<int>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    
    priority_queue<pair<int, int>> que;
    vector<bool> seen(N, false);
    seen[S] = true;

    for (auto nv : G[S]) {
        seen[nv] = true;
        que.emplace(p[nv], nv);
    }
    int ans = 0;
    int mini = p[S];
    while (!que.empty()) {
        auto pa = que.top();
        que.pop();
        int v = pa.second;

        if (pa.first < mini) {
            mini = pa.first;
            ans++;
        }
        for (auto nv : G[v]) {
            if (seen[nv]) continue;
            seen[nv] = true;
            que.emplace(p[nv], nv);
        }
    }

    cout << ans << endl;
}
0