結果

問題 No.1382 Travel in Mitaru city
ユーザー RheoTommyRheoTommy
提出日時 2021-02-07 23:09:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 215,996 KB
実行使用メモリ 15,968 KB
最終ジャッジ日時 2024-07-04 17:50:13
合計ジャッジ時間 11,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 82 ms
6,272 KB
testcase_07 AC 63 ms
5,888 KB
testcase_08 AC 34 ms
5,376 KB
testcase_09 AC 91 ms
6,656 KB
testcase_10 AC 85 ms
6,400 KB
testcase_11 AC 121 ms
10,112 KB
testcase_12 AC 127 ms
10,368 KB
testcase_13 AC 137 ms
10,624 KB
testcase_14 AC 113 ms
9,856 KB
testcase_15 AC 123 ms
10,112 KB
testcase_16 AC 197 ms
13,824 KB
testcase_17 AC 191 ms
13,824 KB
testcase_18 AC 201 ms
13,824 KB
testcase_19 AC 190 ms
13,824 KB
testcase_20 AC 200 ms
13,952 KB
testcase_21 AC 193 ms
13,844 KB
testcase_22 AC 192 ms
13,780 KB
testcase_23 AC 202 ms
13,824 KB
testcase_24 AC 191 ms
13,824 KB
testcase_25 AC 187 ms
13,824 KB
testcase_26 AC 193 ms
13,824 KB
testcase_27 AC 200 ms
13,952 KB
testcase_28 AC 189 ms
13,824 KB
testcase_29 AC 196 ms
13,824 KB
testcase_30 AC 189 ms
13,824 KB
testcase_31 AC 146 ms
12,416 KB
testcase_32 AC 180 ms
14,080 KB
testcase_33 AC 164 ms
13,312 KB
testcase_34 AC 107 ms
10,240 KB
testcase_35 AC 67 ms
7,936 KB
testcase_36 AC 121 ms
12,416 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 141 ms
13,440 KB
testcase_39 AC 35 ms
5,888 KB
testcase_40 AC 102 ms
10,880 KB
testcase_41 AC 114 ms
11,904 KB
testcase_42 AC 138 ms
13,568 KB
testcase_43 AC 118 ms
12,160 KB
testcase_44 AC 46 ms
6,912 KB
testcase_45 AC 106 ms
11,392 KB
testcase_46 AC 43 ms
6,800 KB
testcase_47 AC 167 ms
15,072 KB
testcase_48 AC 114 ms
11,664 KB
testcase_49 AC 174 ms
15,968 KB
testcase_50 AC 72 ms
9,060 KB
testcase_51 AC 137 ms
12,544 KB
testcase_52 AC 166 ms
14,208 KB
testcase_53 AC 36 ms
5,888 KB
testcase_54 AC 71 ms
8,320 KB
testcase_55 AC 170 ms
13,824 KB
testcase_56 AC 52 ms
6,944 KB
testcase_57 AC 106 ms
10,240 KB
testcase_58 AC 16 ms
5,376 KB
testcase_59 AC 47 ms
6,912 KB
testcase_60 AC 153 ms
13,568 KB
testcase_61 AC 4 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 15 ms
5,376 KB
testcase_64 AC 5 ms
5,376 KB
testcase_65 AC 3 ms
5,376 KB
testcase_66 AC 4 ms
5,376 KB
testcase_67 AC 4 ms
5,376 KB
testcase_68 AC 7 ms
5,376 KB
testcase_69 AC 4 ms
5,376 KB
testcase_70 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (int) n; i++)

using ll = long long;
using namespace std;
using T = tuple<ll, ll, ll>;
using P = pair<ll, ll>;

const long long INF = 1ll << 60;

template<class T>
bool chmin(T &a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
bool chmax(T &a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}


int main() {
    ll n, m, s, t;
    cin >> n >> m >> s >> t;
    s--;
    t--;
    vector<ll> p(n);
    rep(i, n) cin >> p[i];
    vector<vector<ll>> vertex(n);
    rep(i, m) {
        ll a, b;
        cin >> a >> b;
        a--;
        b--;
        vertex[a].push_back(b);
        vertex[b].push_back(a);
    }
    
    ll ans = 0;
    ll x = p[s];
    set<ll> st;
    priority_queue<P> pri;
    st.insert(s);
    pri.emplace(p[s], s);
    while (!pri.empty()) {
        auto[pi, i] = pri.top();
        pri.pop();
        if (x > pi) {
            ans++;
            x = p[i];
        }
        for (auto j:vertex[i]) {
            if (st.find(j) == st.end()) {
                st.insert(j);
                pri.emplace(p[j], j);
            }
        }
    }
    
    cout << ans << endl;
}
0