結果

問題 No.2431 Viral Hotel
ユーザー noya2noya2
提出日時 2023-08-14 21:56:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,487 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 211,576 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-23 12:26:46
合計ジャッジ時間 8,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
10,996 KB
testcase_01 AC 135 ms
10,228 KB
testcase_02 AC 143 ms
10,768 KB
testcase_03 AC 159 ms
11,580 KB
testcase_04 AC 166 ms
12,600 KB
testcase_05 AC 188 ms
12,604 KB
testcase_06 AC 45 ms
5,248 KB
testcase_07 AC 44 ms
5,248 KB
testcase_08 AC 44 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 203 ms
14,208 KB
testcase_13 AC 163 ms
11,124 KB
testcase_14 AC 79 ms
8,124 KB
testcase_15 AC 33 ms
5,248 KB
testcase_16 AC 96 ms
11,408 KB
testcase_17 AC 68 ms
6,912 KB
testcase_18 AC 156 ms
12,812 KB
testcase_19 AC 99 ms
9,820 KB
testcase_20 AC 47 ms
6,784 KB
testcase_21 AC 39 ms
5,884 KB
testcase_22 AC 104 ms
9,024 KB
testcase_23 AC 111 ms
8,724 KB
testcase_24 AC 64 ms
7,552 KB
testcase_25 AC 141 ms
10,392 KB
testcase_26 AC 88 ms
9,088 KB
testcase_27 AC 99 ms
8,504 KB
testcase_28 AC 80 ms
7,644 KB
testcase_29 AC 81 ms
7,468 KB
testcase_30 AC 96 ms
7,748 KB
testcase_31 AC 122 ms
10,836 KB
testcase_32 AC 39 ms
5,248 KB
testcase_33 AC 79 ms
7,136 KB
testcase_34 AC 8 ms
5,248 KB
testcase_35 AC 26 ms
5,248 KB
testcase_36 AC 136 ms
10,888 KB
testcase_37 AC 97 ms
8,912 KB
testcase_38 AC 44 ms
6,816 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 186 ms
14,084 KB
testcase_44 AC 115 ms
9,772 KB
testcase_45 AC 86 ms
8,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pli = pair<ll,int>;

int main(){
    int n, k, m, p; cin >> n >> k >> m >> p;
    vector<vector<int>> g(n);
    while (m--){
        int u, v; cin >> u >> v; u--, v--;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }
    vector<ll> s(n);
    for (int i = 0; i < n; i++) cin >> s[i];
    /*
        0 : none
        1 : infected
        2 : cured
        3 : infected again
    */
    vector<ll> status(n,0);
    priority_queue<pli,vector<pli>,greater<pli>> pque;
    auto id = [&](ll t, int type){
        return t * 3 + type;
    };
    while (k--){
        int x; cin >> x; x--;
        pque.push(pli(id(0,2),x));
    }
    int ans = 0;
    while (!pque.empty()){
        auto [tt, v] = pque.top(); pque.pop();
        ll t = tt / 3;
        int type = tt % 3;
        if (type == 0){
            if (status[v] == 3) continue;
            status[v] = 2;
        }
        if (type == 1){
            if (status[v] == 3) continue;
            for (int u : g[v]){
                pque.push(pli(id(t,2),u));
            }
        }
        if (type == 2){
            if (status[v] >= 2) continue;
            if (status[v] == 0){
                status[v] = 1;
                pque.push(pli(id(t+s[v],1),v));
                pque.push(pli(id(t+p,0),v));
            }
            else {
                ans++;
                status[v] = 3;
            }
        }
    }
    cout << ans << endl;
}
0