結果

問題 No.2431 Viral Hotel
ユーザー cho435cho435
提出日時 2023-08-21 22:56:27
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,023 bytes
コンパイル時間 4,201 ms
コンパイル使用メモリ 270,976 KB
実行使用メモリ 13,044 KB
最終ジャッジ日時 2024-12-15 14:36:56
合計ジャッジ時間 10,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
9,700 KB
testcase_01 AC 120 ms
9,224 KB
testcase_02 AC 131 ms
9,804 KB
testcase_03 AC 145 ms
10,600 KB
testcase_04 AC 163 ms
11,312 KB
testcase_05 AC 173 ms
11,304 KB
testcase_06 AC 43 ms
6,820 KB
testcase_07 AC 45 ms
6,816 KB
testcase_08 AC 41 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 177 ms
13,044 KB
testcase_13 AC 147 ms
9,984 KB
testcase_14 AC 70 ms
7,356 KB
testcase_15 AC 30 ms
6,816 KB
testcase_16 AC 88 ms
9,620 KB
testcase_17 AC 61 ms
6,820 KB
testcase_18 AC 136 ms
10,992 KB
testcase_19 AC 89 ms
8,548 KB
testcase_20 AC 42 ms
6,816 KB
testcase_21 AC 35 ms
6,816 KB
testcase_22 AC 94 ms
7,940 KB
testcase_23 AC 99 ms
7,912 KB
testcase_24 AC 58 ms
7,040 KB
testcase_25 AC 131 ms
9,404 KB
testcase_26 AC 79 ms
8,164 KB
testcase_27 AC 89 ms
7,680 KB
testcase_28 AC 70 ms
7,016 KB
testcase_29 AC 72 ms
6,820 KB
testcase_30 AC 87 ms
6,880 KB
testcase_31 AC 122 ms
9,452 KB
testcase_32 AC 37 ms
6,820 KB
testcase_33 AC 71 ms
6,820 KB
testcase_34 AC 8 ms
6,816 KB
testcase_35 AC 25 ms
6,824 KB
testcase_36 AC 130 ms
9,560 KB
testcase_37 AC 84 ms
7,808 KB
testcase_38 AC 41 ms
6,816 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 166 ms
12,092 KB
testcase_44 AC 106 ms
8,536 KB
testcase_45 AC 78 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