結果

問題 No.1382 Travel in Mitaru city
ユーザー norikamenorikame
提出日時 2021-02-12 15:00:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 2,037 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 215,968 KB
実行使用メモリ 14,532 KB
最終ジャッジ日時 2024-07-19 08:14:39
合計ジャッジ時間 12,786 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 95 ms
5,656 KB
testcase_07 AC 73 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 106 ms
5,656 KB
testcase_10 AC 97 ms
5,740 KB
testcase_11 AC 122 ms
9,216 KB
testcase_12 AC 131 ms
9,344 KB
testcase_13 AC 138 ms
9,600 KB
testcase_14 AC 115 ms
9,088 KB
testcase_15 AC 123 ms
9,216 KB
testcase_16 AC 194 ms
12,672 KB
testcase_17 AC 193 ms
12,672 KB
testcase_18 AC 191 ms
12,656 KB
testcase_19 AC 191 ms
12,672 KB
testcase_20 AC 197 ms
12,672 KB
testcase_21 AC 191 ms
12,672 KB
testcase_22 AC 195 ms
12,672 KB
testcase_23 AC 187 ms
12,668 KB
testcase_24 AC 189 ms
12,672 KB
testcase_25 AC 186 ms
12,800 KB
testcase_26 AC 189 ms
12,800 KB
testcase_27 AC 192 ms
12,672 KB
testcase_28 AC 194 ms
12,672 KB
testcase_29 AC 185 ms
12,672 KB
testcase_30 AC 180 ms
12,672 KB
testcase_31 AC 143 ms
11,904 KB
testcase_32 AC 181 ms
13,696 KB
testcase_33 AC 167 ms
12,800 KB
testcase_34 AC 114 ms
9,984 KB
testcase_35 AC 73 ms
7,936 KB
testcase_36 AC 133 ms
12,032 KB
testcase_37 AC 20 ms
5,376 KB
testcase_38 AC 142 ms
13,056 KB
testcase_39 AC 35 ms
5,888 KB
testcase_40 AC 111 ms
10,624 KB
testcase_41 AC 120 ms
11,520 KB
testcase_42 AC 150 ms
13,312 KB
testcase_43 AC 122 ms
11,904 KB
testcase_44 AC 48 ms
6,656 KB
testcase_45 AC 111 ms
11,008 KB
testcase_46 AC 41 ms
6,272 KB
testcase_47 AC 151 ms
13,736 KB
testcase_48 AC 100 ms
10,532 KB
testcase_49 AC 165 ms
14,532 KB
testcase_50 AC 69 ms
8,332 KB
testcase_51 AC 140 ms
12,160 KB
testcase_52 AC 162 ms
13,696 KB
testcase_53 AC 36 ms
5,760 KB
testcase_54 AC 73 ms
8,064 KB
testcase_55 AC 158 ms
13,440 KB
testcase_56 AC 50 ms
6,912 KB
testcase_57 AC 101 ms
9,984 KB
testcase_58 AC 17 ms
5,376 KB
testcase_59 AC 49 ms
6,656 KB
testcase_60 AC 153 ms
13,056 KB
testcase_61 AC 5 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 21 ms
5,376 KB
testcase_64 AC 7 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 4 ms
5,376 KB
testcase_67 AC 5 ms
5,376 KB
testcase_68 AC 8 ms
5,376 KB
testcase_69 AC 4 ms
5,376 KB
testcase_70 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
using ull = unsigned long long;
#define v(t) vector<t>
#define p(t) pair<t, t>
#define p2(t, s) pair<t, s>
#define vp(t) v(p(t))

#define rep(i, n) for (int i=0,i##_len=((int)(n)); i<i##_len; ++i)
#define rep2(i, a, n) for (int i=((int)(a)),i##_len=((int)(n)); i<=i##_len; ++i)
#define repr(i, n) for (int i=((int)(n)-1); i>=0; --i)
#define rep2r(i, a, n) for (int i=((int)(n)),i##_len=((int)(a)); i>=i##_len; --i)

#define repi(itr, c) for (__typeof((c).begin()) itr=(c).begin(); itr!=(c).end(); ++itr)
#define repir(itr, c) for (__typeof((c).rbegin()) itr=(c).rbegin(); itr!=(c).rend(); ++itr)

#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()

#define SORT(v, n) sort(v, v+n);
#define VSORT(v) sort(v.begin(), v.end());
#define RSORT(x) sort(rall(x));
#define pb push_back
#define eb emplace_back

#define INF (1e9)
#define LINF (1e18)
#define PI (acos(-1))
#define EPS (1e-7)
#define DEPS (1e-10)

// 解説を見てから提出

int main(){
    int n, m, s, t;
    cin >> n >> m >> s >> t;
    --s; --t;
    v(int) pi(n);
    rep(i, n) cin >> pi[i];
    v(v(int)) g(n);
    rep(i, m) {
        int ai, bi;
        cin >> ai >> bi;
        ai--; bi--;
        g[ai].pb(bi);
        g[bi].pb(ai);
    }
    set<int> visited;
    priority_queue<p(int)> que;
    int yval = 0, xval = pi[s];
    que.emplace(pi[s], s);
    while (!que.empty()) {
        auto p1 = que.top(); que.pop();
        int vi = p1.second, vpi = p1.first;
        if (pi[vi] != vpi) continue;
        if (visited.find(vi) != visited.end()) continue;
        visited.insert(vi);
        if (xval > vpi) {
            xval = vpi;
            ++yval;
        }
        rep(i, sz(g[vi])) {
            if (visited.find(g[vi][i]) != visited.end()) continue;
            que.emplace(pi[g[vi][i]], g[vi][i]);
        }
    }
    cout << yval << endl;
    return 0;
}
0