結果

問題 No.2431 Viral Hotel
ユーザー cho435cho435
提出日時 2023-08-21 22:56:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,023 bytes
コンパイル時間 4,795 ms
コンパイル使用メモリ 270,864 KB
実行使用メモリ 12,516 KB
最終ジャッジ日時 2024-05-09 05:00:56
合計ジャッジ時間 12,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
9,700 KB
testcase_01 AC 138 ms
9,224 KB
testcase_02 AC 147 ms
9,804 KB
testcase_03 AC 173 ms
10,476 KB
testcase_04 AC 182 ms
11,312 KB
testcase_05 AC 197 ms
11,424 KB
testcase_06 AC 44 ms
5,376 KB
testcase_07 AC 45 ms
5,376 KB
testcase_08 AC 44 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 210 ms
12,516 KB
testcase_13 AC 177 ms
9,984 KB
testcase_14 AC 84 ms
7,424 KB
testcase_15 AC 32 ms
5,376 KB
testcase_16 AC 98 ms
9,744 KB
testcase_17 AC 68 ms
6,144 KB
testcase_18 AC 163 ms
10,992 KB
testcase_19 AC 106 ms
8,572 KB
testcase_20 AC 51 ms
6,400 KB
testcase_21 AC 39 ms
5,376 KB
testcase_22 AC 107 ms
7,984 KB
testcase_23 AC 119 ms
8,040 KB
testcase_24 AC 69 ms
6,940 KB
testcase_25 AC 155 ms
9,408 KB
testcase_26 AC 93 ms
8,172 KB
testcase_27 AC 106 ms
7,808 KB
testcase_28 AC 85 ms
6,948 KB
testcase_29 AC 87 ms
6,784 KB
testcase_30 AC 101 ms
6,940 KB
testcase_31 AC 132 ms
9,452 KB
testcase_32 AC 39 ms
5,376 KB
testcase_33 AC 82 ms
6,368 KB
testcase_34 AC 8 ms
5,376 KB
testcase_35 AC 27 ms
5,376 KB
testcase_36 AC 142 ms
9,472 KB
testcase_37 AC 96 ms
7,804 KB
testcase_38 AC 49 ms
6,400 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 183 ms
12,092 KB
testcase_44 AC 115 ms
8,536 KB
testcase_45 AC 88 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

int main(){
	int n,k,m,p;
	cin>>n>>k>>m>>p;
	vector<vector<int>> g(n);
	rep(i,m){
		int u,v;
		cin>>u>>v;
		u--; v--;
		g.at(u).push_back(v);
		g.at(v).push_back(u);
	}
	vector<int> s(n);
	rep(i,n) cin>>s.at(i);
	priority_queue<tuple<int,int,int>,vector<tuple<int,int,int>>,greater<tuple<int,int,int>>> pq;
	rep(i,k){
		int x;
		cin>>x;
		x--;
		pq.push({0,2,x});
	}
	vector<int> st(n,-1);
	while(!pq.empty()){
		auto[t,flg,x]=pq.top();
		pq.pop();
		if(st.at(x)==2) continue;
		if(flg==2){
			if(st.at(x)==0){
				st.at(x)=2;
				continue;
			}
			if(st.at(x)==1) continue;
			st.at(x)=0;
			pq.push({t+s.at(x),1,x});
			pq.push({t+p,0,x});
		}
		if(flg==1){
			for(int nx:g.at(x)){
				if(st.at(nx)>0) continue;
				pq.push({t,2,nx});
			}
		}
		if(flg==0){
			st.at(x)=1;
		}
	}
	int ans=0;
	rep(i,n) if(st.at(i)==2) ans++;
	cout<<ans<<endl;
}
0