結果

問題 No.2431 Viral Hotel
ユーザー pockynypockyny
提出日時 2023-08-19 00:21:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,669 bytes
コンパイル時間 1,057 ms
コンパイル使用メモリ 102,056 KB
実行使用メモリ 12,220 KB
最終ジャッジ日時 2024-11-28 12:21:30
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
10,632 KB
testcase_01 AC 92 ms
9,964 KB
testcase_02 AC 104 ms
10,240 KB
testcase_03 AC 104 ms
10,892 KB
testcase_04 AC 113 ms
11,212 KB
testcase_05 AC 120 ms
11,768 KB
testcase_06 AC 43 ms
6,816 KB
testcase_07 AC 41 ms
6,820 KB
testcase_08 AC 42 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 134 ms
12,220 KB
testcase_13 AC 111 ms
10,568 KB
testcase_14 AC 54 ms
8,560 KB
testcase_15 AC 24 ms
7,040 KB
testcase_16 AC 64 ms
9,504 KB
testcase_17 AC 46 ms
7,808 KB
testcase_18 AC 105 ms
11,024 KB
testcase_19 AC 69 ms
9,096 KB
testcase_20 AC 37 ms
7,752 KB
testcase_21 AC 29 ms
7,624 KB
testcase_22 AC 73 ms
9,020 KB
testcase_23 AC 84 ms
9,088 KB
testcase_24 AC 48 ms
8,388 KB
testcase_25 AC 101 ms
10,180 KB
testcase_26 AC 66 ms
8,832 KB
testcase_27 AC 75 ms
8,960 KB
testcase_28 AC 59 ms
8,392 KB
testcase_29 AC 58 ms
8,516 KB
testcase_30 AC 71 ms
8,448 KB
testcase_31 AC 93 ms
9,704 KB
testcase_32 AC 33 ms
7,232 KB
testcase_33 AC 63 ms
8,192 KB
testcase_34 AC 9 ms
6,816 KB
testcase_35 AC 23 ms
6,912 KB
testcase_36 AC 98 ms
10,376 KB
testcase_37 AC 72 ms
9,048 KB
testcase_38 AC 40 ms
7,880 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 3 ms
6,820 KB
testcase_42 AC 3 ms
6,816 KB
testcase_43 AC 120 ms
11,900 KB
testcase_44 AC 77 ms
9,564 KB
testcase_45 AC 59 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;
typedef pair<int,int> pii;
vector<int> G[100010];
int s[100010],c[100010];
bool cure[100010],iru[100010];
int main(){
    int i,n,k,m,p; cin >> n >> k >> m >> p;
    for(i=0;i<m;i++){
        int u,v; cin >> u >> v; u--; v--;
        G[u].push_back(v); G[v].push_back(u);
    }
    for(i=0;i<n;i++){
        cure[i] = false; iru[i] = true;
    }
    map<int,vector<pair<int,int>>> ms;
    for(i=0;i<n;i++) cin >> s[i];
    for(i=0;i<k;i++){
        int x; cin >> x; x--;
        ms[p].push_back({-1,x});
        ms[s[x]].push_back({1,x});
        c[x] = 1;
    }
    while(ms.size()){
        auto x = *ms.begin();
        ms.erase(x.first);
        vector<pair<int,int>> v = x.second;
        sort(v.begin(),v.end());
        vector<int> del;
        for(auto pp:v){
            if(pp.first==-1){
                cure[pp.second] = true;
            }else{
                if(!iru[pp.second]) continue;
                for(int u:G[pp.second]){
                    if(!cure[u]){
                        if(!c[u]){
                            c[u] = 1;
                            ms[x.first + p].push_back({-1,u});
                            ms[x.first + s[u]].push_back({1,u});
                        }else{
                            del.push_back(u);
                        }
                    }
                }
            }
        }
        for(int u:del){
            iru[u] = false;
        }
    }
    int ans = 0;
    for(i=0;i<n;i++){
        if(!iru[i]) ans++;
    }
    cout << ans << "\n";
    // for(i=0;i<n;i++) cout << iru[i];
    // cout << endl;
}
0