結果

問題 No.1382 Travel in Mitaru city
ユーザー chocoruskchocorusk
提出日時 2021-02-09 20:04:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 1,243 ms
コンパイル使用メモリ 135,712 KB
実行使用メモリ 10,620 KB
最終ジャッジ日時 2024-07-07 02:11:52
合計ジャッジ時間 9,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 4 ms
6,016 KB
testcase_03 AC 3 ms
6,016 KB
testcase_04 AC 3 ms
5,888 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 55 ms
7,424 KB
testcase_07 AC 43 ms
7,168 KB
testcase_08 AC 23 ms
6,656 KB
testcase_09 AC 58 ms
7,680 KB
testcase_10 AC 54 ms
7,424 KB
testcase_11 AC 78 ms
8,064 KB
testcase_12 AC 80 ms
8,192 KB
testcase_13 AC 85 ms
8,448 KB
testcase_14 AC 75 ms
8,064 KB
testcase_15 AC 78 ms
8,064 KB
testcase_16 AC 117 ms
9,344 KB
testcase_17 AC 115 ms
9,216 KB
testcase_18 AC 117 ms
9,344 KB
testcase_19 AC 115 ms
9,344 KB
testcase_20 AC 116 ms
9,332 KB
testcase_21 AC 116 ms
9,344 KB
testcase_22 AC 116 ms
9,472 KB
testcase_23 AC 118 ms
9,344 KB
testcase_24 AC 115 ms
9,344 KB
testcase_25 AC 117 ms
9,344 KB
testcase_26 AC 120 ms
9,336 KB
testcase_27 AC 118 ms
9,344 KB
testcase_28 AC 122 ms
9,216 KB
testcase_29 AC 121 ms
9,344 KB
testcase_30 AC 115 ms
9,344 KB
testcase_31 AC 91 ms
8,832 KB
testcase_32 AC 106 ms
9,472 KB
testcase_33 AC 99 ms
9,132 KB
testcase_34 AC 71 ms
8,192 KB
testcase_35 AC 50 ms
7,424 KB
testcase_36 AC 89 ms
8,832 KB
testcase_37 AC 16 ms
6,400 KB
testcase_38 AC 94 ms
9,216 KB
testcase_39 AC 26 ms
6,784 KB
testcase_40 AC 70 ms
8,320 KB
testcase_41 AC 76 ms
8,704 KB
testcase_42 AC 92 ms
9,212 KB
testcase_43 AC 82 ms
8,704 KB
testcase_44 AC 34 ms
7,040 KB
testcase_45 AC 73 ms
8,644 KB
testcase_46 AC 30 ms
7,128 KB
testcase_47 AC 106 ms
10,404 KB
testcase_48 AC 75 ms
8,832 KB
testcase_49 AC 114 ms
10,620 KB
testcase_50 AC 51 ms
8,064 KB
testcase_51 AC 82 ms
8,832 KB
testcase_52 AC 95 ms
9,600 KB
testcase_53 AC 24 ms
6,912 KB
testcase_54 AC 45 ms
7,552 KB
testcase_55 AC 93 ms
9,344 KB
testcase_56 AC 32 ms
7,040 KB
testcase_57 AC 63 ms
8,192 KB
testcase_58 AC 12 ms
6,272 KB
testcase_59 AC 31 ms
7,040 KB
testcase_60 AC 97 ms
9,216 KB
testcase_61 AC 5 ms
5,888 KB
testcase_62 AC 4 ms
6,016 KB
testcase_63 AC 15 ms
6,016 KB
testcase_64 AC 6 ms
6,016 KB
testcase_65 AC 3 ms
5,888 KB
testcase_66 AC 4 ms
6,016 KB
testcase_67 AC 5 ms
6,016 KB
testcase_68 AC 6 ms
6,272 KB
testcase_69 AC 5 ms
6,016 KB
testcase_70 AC 8 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <stack>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n, m, s, t;
    cin>>n>>m>>s>>t;
    int p[100010];
    for(int i=0; i<n; i++){
        cin>>p[i];
    }
    s--; t--;
    vector<int> g[100010];
    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<P> que;
    que.push({p[s], s});
    bool used[100010]={};
    used[s]=1;
    int cnt=0, val=p[s];
    while(!que.empty()){
        P q=que.top(); que.pop();
        if(val>q.first){
            val=q.first;
            cnt++;
        }
        int x=q.second;
        for(auto y:g[x]){
            if(!used[y]){
                used[y]=1;
                que.push({p[y], y});
            }
        }
    }
    cout<<cnt<<endl;
    return 0;
}
0