結果

問題 No.2431 Viral Hotel
ユーザー 👑 potato167potato167
提出日時 2023-08-16 01:47:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,289 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 211,904 KB
実行使用メモリ 12,328 KB
最終ジャッジ日時 2024-11-24 11:04:25
合計ジャッジ時間 8,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
9,872 KB
testcase_01 AC 135 ms
9,372 KB
testcase_02 AC 143 ms
9,804 KB
testcase_03 AC 155 ms
10,476 KB
testcase_04 AC 164 ms
11,308 KB
testcase_05 AC 182 ms
11,308 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 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 207 ms
12,272 KB
testcase_13 AC 156 ms
9,984 KB
testcase_14 AC 77 ms
7,296 KB
testcase_15 AC 31 ms
5,248 KB
testcase_16 AC 96 ms
9,792 KB
testcase_17 AC 65 ms
6,400 KB
testcase_18 AC 172 ms
11,180 KB
testcase_19 AC 99 ms
8,732 KB
testcase_20 AC 46 ms
6,272 KB
testcase_21 AC 39 ms
5,352 KB
testcase_22 AC 102 ms
8,112 KB
testcase_23 AC 107 ms
7,916 KB
testcase_24 AC 63 ms
7,040 KB
testcase_25 AC 138 ms
9,344 KB
testcase_26 AC 83 ms
8,172 KB
testcase_27 AC 96 ms
7,680 KB
testcase_28 AC 77 ms
6,912 KB
testcase_29 AC 79 ms
6,784 KB
testcase_30 AC 94 ms
7,040 KB
testcase_31 AC 121 ms
9,568 KB
testcase_32 AC 38 ms
5,248 KB
testcase_33 AC 75 ms
6,520 KB
testcase_34 AC 9 ms
5,248 KB
testcase_35 AC 25 ms
5,248 KB
testcase_36 AC 134 ms
9,820 KB
testcase_37 AC 93 ms
7,816 KB
testcase_38 AC 44 ms
6,272 KB
testcase_39 AC 2 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 187 ms
12,328 KB
testcase_44 AC 116 ms
8,780 KB
testcase_45 AC 83 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(p) p.begin(),p.end()
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)
const int mod=998244353;

int main(){
	int N,K,M,P;
	cin>>N>>K>>M>>P;
	vector<vector<int>> G(N);
	rep(i,0,M){
		int a,b;
		cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	struct event
	{
		int type;
		int time;
		int ind;
	};
	auto comp_event=[&](event l,event r)->bool{
		if(l.time==r.time) return l.type>r.type;
		return l.time>r.time;
	};
	vector<int> p(N);
	priority_queue<event,vector<event>,std::function<bool(event,event)>> pq(comp_event);
	vector<int> S(N);
	rep(i,0,N) cin>>S[i];
	rep(i,0,K){
		int x;
		cin>>x;
		x--;
		pq.push({1,P,x});
		pq.push({2,S[x],x});
		p[x]++;
	}
	int ans=0;
	while(!pq.empty()){
		auto tmp=pq.top();
		pq.pop();
		//cout<<tmp.type<<" "<<tmp.time<<" "<<tmp.ind+1<<endl;
		if(tmp.type==1){
			if(p[tmp.ind]!=-1) p[tmp.ind]=-2;
		}
		if(tmp.type==2){
			if(p[tmp.ind]==-1) continue;
			for(auto x:G[tmp.ind]){
				if(p[x]==-1||p[x]==-2) continue;
				p[x]++;
				if(p[x]==1){
					pq.push({2,tmp.time+S[x],x});
					pq.push({1,tmp.time+P,x});
				}
				if(p[x]==2){
					pq.push({3,tmp.time,x});
				}
			}
		}
		if(tmp.type==3){
			ans++;
			p[tmp.ind]=-1;
		}
	}
	cout<<ans<<"\n";
}
0