結果

問題 No.2431 Viral Hotel
ユーザー tailstails
提出日時 2023-08-18 23:05:35
言語 cLay
(20241019-1)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 183,036 KB
実行使用メモリ 16,184 KB
最終ジャッジ日時 2024-11-28 09:42:20
合計ジャッジ時間 6,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

priority_queue<pair<ll,pair<ll,ll>>>q;
ll@n,@k,@m,@p;
int u[m],v[];
rd((u--,v--)(m));
graph g;
g.setEdge(n,m,u,v);
ll@s[n],r[n]{},t[n]{};
rep(k){
	ll@x--;
	t[x]=1;
	rep(j,g.es[x]){
		ll a=g.edge[x][j];
		q.push({-s[x],{x,a}});
	}
}
while(!q.empty()){
	auto b=q.top();
	q.pop();
	ll d=-b.first;
	ll f=b.second.first;
	if(t[f]!=2||r[f]==d){
		ll x=b.second.second;
		if(!t[x]){
			t[x]=1;
			r[x]=d;
			rep(j,g.es[x]){
				ll a=g.edge[x][j];
				q.push({-(d+s[x]),{x,a}});
			}
		}else if(t[x]==1&&d-r[x]<p){
			t[x]=2;
			r[x]=d;
		}
	}
}
wt(sum[ll][i,0,n](t[i]==2));
0