結果
問題 | No.2431 Viral Hotel |
ユーザー | kotatsugame |
提出日時 | 2023-08-18 21:29:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,056 bytes |
コンパイル時間 | 738 ms |
コンパイル使用メモリ | 80,732 KB |
実行使用メモリ | 11,320 KB |
最終ジャッジ日時 | 2024-05-06 03:20:28 |
合計ジャッジ時間 | 4,099 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 17 ms
7,424 KB |
testcase_08 | AC | 16 ms
7,296 KB |
testcase_09 | AC | 3 ms
6,400 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 7 ms
6,656 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 3 ms
6,400 KB |
testcase_40 | AC | 3 ms
6,400 KB |
testcase_41 | AC | 3 ms
6,528 KB |
testcase_42 | AC | 3 ms
6,400 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<queue> #include<cassert> //#include<atcoder/modint> using namespace std; //using mint=atcoder::modint998244353; int N,K,M,P; vector<int>G[1<<17]; int S[1<<17]; int inf[1<<17]; bool ban[1<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>K>>M>>P; for(int i=0;i<M;i++) { int u,v;cin>>u>>v; u--,v--; G[u].push_back(v); G[v].push_back(u); } for(int i=0;i<N;i++) { cin>>S[i]; inf[i]=-1; } priority_queue<pair<int,int>,vector<pair<int,int> >,greater<pair<int,int> > >Q; for(int i=0;i<K;i++) { int x;cin>>x;x--; inf[x]=0; Q.push(make_pair(inf[x]+S[x],x)); } int bc=0; while(!Q.empty()) { int d=Q.top().first; while(!Q.empty()&&Q.top().first==d) { int x=Q.top().second; Q.pop(); if(ban[x]) { continue; } for(int v:G[x]) { if(inf[v]==-1) { inf[v]=d; Q.push(make_pair(inf[v]+S[v],v)); } else if(inf[v]+P>d) { bc+=!ban[v]; ban[v]=true; } } } } cout<<bc<<endl; }