結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー tailstails
提出日時 2022-08-09 18:41:47
言語 cLay
(20240714-1)
結果
AC  
実行時間 64 ms / 3,000 ms
コード長 338 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 175,236 KB
実行使用メモリ 11,340 KB
最終ジャッジ日時 2024-09-19 23:28:04
合計ジャッジ時間 5,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 29 ms
10,696 KB
testcase_08 AC 12 ms
9,292 KB
testcase_09 AC 11 ms
7,552 KB
testcase_10 AC 12 ms
9,796 KB
testcase_11 AC 12 ms
10,568 KB
testcase_12 AC 11 ms
9,728 KB
testcase_13 AC 15 ms
9,216 KB
testcase_14 AC 19 ms
10,112 KB
testcase_15 AC 20 ms
11,340 KB
testcase_16 AC 7 ms
9,156 KB
testcase_17 AC 64 ms
9,472 KB
testcase_18 AC 7 ms
9,280 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,948 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 31 ms
10,696 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 10 ms
9,088 KB
testcase_25 AC 12 ms
10,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w,@y--,@x--,@a[h*w],b=0;
DijkstraHeap<ll>q;
q.malloc(h*w,1);
q.change(y*w+x,0);

while(q.size&&b<=1000000000){
	ll t=q.pop();
	if(b&&a[t]>=b){
		wt("No");
		exit(0);
	}
	b+=a[t];
	if(t/w    ) q.change(t-w,a[t-w]);
	if(t/w<h-1) q.change(t+w,a[t+w]);
	if(t%w    ) q.change(t-1,a[t-1]);
	if(t%w<w-1) q.change(t+1,a[t+1]);
}
wt("Yes");
0