結果

問題 No.2431 Viral Hotel
ユーザー kotatsugamekotatsugame
提出日時 2023-08-18 21:32:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,093 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 80,908 KB
実行使用メモリ 11,184 KB
最終ジャッジ日時 2024-05-06 03:26:39
合計ジャッジ時間 3,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,272 KB
testcase_08 AC 18 ms
7,308 KB
testcase_09 AC 3 ms
6,400 KB
testcase_10 AC 3 ms
6,528 KB
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 5 ms
6,912 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,656 KB
testcase_41 AC 4 ms
6,656 KB
testcase_42 AC 3 ms
6,528 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 33 ms
8,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
	vector<int>B;
	while(!Q.empty())
	{
		int d=Q.top().first;
		B.clear();
		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&&!ban[v])B.push_back(v);
			}
		}
		for(int v:B)
		{
			ban[v]=true;
			bc++;
		}
	}
	cout<<bc<<endl;
}
0