結果

問題 No.2328 Build Walls
ユーザー tailstails
提出日時 2023-05-30 14:24:59
言語 cLay
(20240714-1)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 423 bytes
コンパイル時間 3,441 ms
コンパイル使用メモリ 175,696 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-06-08 20:10:46
合計ジャッジ時間 6,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 10 ms
11,008 KB
testcase_14 AC 33 ms
7,424 KB
testcase_15 AC 25 ms
7,424 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 24 ms
8,576 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 6 ms
8,704 KB
testcase_22 AC 51 ms
9,344 KB
testcase_23 AC 108 ms
17,408 KB
testcase_24 AC 97 ms
17,536 KB
testcase_25 AC 104 ms
17,408 KB
testcase_26 AC 73 ms
17,536 KB
testcase_27 AC 91 ms
17,536 KB
testcase_28 AC 10 ms
12,672 KB
testcase_29 AC 109 ms
17,408 KB
testcase_30 AC 15 ms
15,232 KB
testcase_31 AC 14 ms
14,848 KB
testcase_32 AC 88 ms
17,408 KB
testcase_33 AC 92 ms
17,408 KB
testcase_34 AC 16 ms
16,000 KB
testcase_35 AC 93 ms
17,536 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h----,@w,@a[h][w];
DijkstraHeap<ll>d;
d.malloc(h*w,1);
rep(y,h){
	if(a[y][0]>=0){
		d.change(y*w,a[y][0]);
	}
}
while(d.size){
	ll b=d.pop();
	ll y=b/w;
	ll x=b%w;
	if(x<w-1){
		rep(v,y-1,y+2){
			if(v>=0&&v<h){
				rep(u,x-1,x+2){
					if(u>=0&&a[v][u]>=0){
						d.change(v*w+u,d.val[b]+a[v][u]);
					}
				}
			}
		}
	}
}
ll z=1<<30;
rep(y,h){
	if(d.visited[y*w+(w-1)]){
		z<?=d.val[y*w+(w-1)];
	}
}
wt(z>>30?-1:z);
0