結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー tailstails
提出日時 2022-05-20 22:52:49
言語 cLay
(20240714-1)
結果
AC  
実行時間 64 ms / 3,000 ms
コード長 600 bytes
コンパイル時間 4,017 ms
コンパイル使用メモリ 179,484 KB
実行使用メモリ 9,332 KB
最終ジャッジ日時 2024-09-20 09:14:05
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 29 ms
6,144 KB
testcase_08 AC 9 ms
6,272 KB
testcase_09 AC 9 ms
6,272 KB
testcase_10 AC 9 ms
6,272 KB
testcase_11 AC 10 ms
6,400 KB
testcase_12 AC 9 ms
6,528 KB
testcase_13 AC 32 ms
5,888 KB
testcase_14 AC 30 ms
9,332 KB
testcase_15 AC 30 ms
9,328 KB
testcase_16 AC 5 ms
5,888 KB
testcase_17 AC 64 ms
9,020 KB
testcase_18 AC 6 ms
6,144 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 42 ms
7,408 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 18 ms
6,016 KB
testcase_25 AC 8 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w,@y--,@x--,@a[h][w],b=a[y][x];
a[y][x]=0;
priority_queue<pair<ll,pair<ll,ll>>>q;
goto hoge;

while(!q.empty()){
	{
		auto t=q.top();
		q.pop();
		if(-t.first>=b){
			wt("No");
			exit(0);
		}
		b+=-t.first;
		if(b>1000000000){
			// muteki!
			wt("Yes");
			exit(0);
		}
		y=t.second.first;
		x=t.second.second;
	}
	hoge:;
	if(y    &&a[y-1][x]) q.push({-a[y-1][x],{y-1,x}}),a[y-1][x]=0;
	if(y<h-1&&a[y+1][x]) q.push({-a[y+1][x],{y+1,x}}),a[y+1][x]=0;
	if(x    &&a[y][x-1]) q.push({-a[y][x-1],{y,x-1}}),a[y][x-1]=0;
	if(x<w-1&&a[y][x+1]) q.push({-a[y][x+1],{y,x+1}}),a[y][x+1]=0;
}
wt("Yes");

0