結果

問題 No.2431 Viral Hotel
ユーザー tailstails
提出日時 2023-08-18 23:05:35
言語 cLay
(20240714-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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
12,248 KB
testcase_01 AC 45 ms
11,592 KB
testcase_02 AC 54 ms
11,984 KB
testcase_03 AC 52 ms
11,804 KB
testcase_04 AC 56 ms
11,936 KB
testcase_05 AC 61 ms
13,472 KB
testcase_06 AC 40 ms
11,864 KB
testcase_07 AC 41 ms
11,864 KB
testcase_08 AC 38 ms
11,864 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 66 ms
16,184 KB
testcase_13 AC 54 ms
11,700 KB
testcase_14 AC 22 ms
7,936 KB
testcase_15 AC 14 ms
6,116 KB
testcase_16 AC 15 ms
9,120 KB
testcase_17 AC 22 ms
7,768 KB
testcase_18 AC 53 ms
15,128 KB
testcase_19 AC 25 ms
9,540 KB
testcase_20 AC 14 ms
6,656 KB
testcase_21 AC 15 ms
6,552 KB
testcase_22 AC 43 ms
10,644 KB
testcase_23 AC 40 ms
9,584 KB
testcase_24 AC 16 ms
7,424 KB
testcase_25 AC 47 ms
10,920 KB
testcase_26 AC 23 ms
8,832 KB
testcase_27 AC 31 ms
9,288 KB
testcase_28 AC 28 ms
8,500 KB
testcase_29 AC 32 ms
8,464 KB
testcase_30 AC 37 ms
10,456 KB
testcase_31 AC 35 ms
10,476 KB
testcase_32 AC 16 ms
6,412 KB
testcase_33 AC 29 ms
8,212 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 8 ms
5,248 KB
testcase_36 AC 36 ms
12,036 KB
testcase_37 AC 29 ms
10,288 KB
testcase_38 AC 10 ms
6,912 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 1 ms
5,248 KB
testcase_43 AC 60 ms
16,012 KB
testcase_44 AC 37 ms
10,972 KB
testcase_45 AC 25 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

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