結果

問題 No.2805 Go to School
ユーザー tailstails
提出日時 2024-07-17 10:59:49
言語 cLay
(20240714-1)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 3,936 ms
コンパイル使用メモリ 177,808 KB
実行使用メモリ 21,928 KB
最終ジャッジ日時 2024-07-17 11:00:00
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 20 ms
16,816 KB
testcase_05 AC 29 ms
13,516 KB
testcase_06 AC 14 ms
9,500 KB
testcase_07 AC 17 ms
9,260 KB
testcase_08 AC 23 ms
11,724 KB
testcase_09 AC 18 ms
9,656 KB
testcase_10 AC 15 ms
10,100 KB
testcase_11 AC 83 ms
21,928 KB
testcase_12 AC 43 ms
13,848 KB
testcase_13 AC 62 ms
16,064 KB
testcase_14 AC 11 ms
8,740 KB
testcase_15 AC 3 ms
8,392 KB
testcase_16 AC 2 ms
6,948 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 21 ms
11,288 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 52 ms
14,576 KB
testcase_21 AC 97 ms
21,296 KB
testcase_22 AC 23 ms
12,968 KB
testcase_23 AC 33 ms
14,380 KB
testcase_24 AC 63 ms
14,520 KB
testcase_25 AC 19 ms
9,608 KB
testcase_26 AC 33 ms
20,140 KB
testcase_27 AC 30 ms
21,040 KB
testcase_28 AC 5 ms
8,320 KB
testcase_29 AC 6 ms
9,840 KB
testcase_30 AC 13 ms
13,516 KB
testcase_31 AC 48 ms
11,784 KB
testcase_32 AC 48 ms
17,180 KB
testcase_33 AC 81 ms
20,780 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 3 ms
6,944 KB
testcase_36 AC 38 ms
11,004 KB
testcase_37 AC 41 ms
13,212 KB
testcase_38 AC 53 ms
17,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@(n,m,l,s,e),@(a--,b--,t)[m],u[2d5];
rep(l){
	int@x--;
	u[x]=1;
}
wgraph<int>g;
g.setEdge(n,m,a,b,t);
DijkstraHeap<ll>h;
h.malloc(2n,1);
h.change(0,0);
while(h.size){
	int i=h.pop();
	ll v=h.val[i];
	if(i==2n-1){
		wt(v);
		exit(0);
	}
	int i0=i<n?i:i-n;
	rep(j,g.es[i0]){
		h.change(g.edge[i0][j]+(i-i0),v+g.cost[i0][j]);
	}
	if(i<n&&v<s+e&&u[i]){
		h.change(i+n,max(s,v)+1);
	}
}
wt(-1);
0