結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | tails |
提出日時 | 2022-05-20 22:51:07 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 3,765 ms |
コンパイル使用メモリ | 181,516 KB |
実行使用メモリ | 10,432 KB |
最終ジャッジ日時 | 2024-09-20 09:12:47 |
合計ジャッジ時間 | 4,325 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 28 ms
6,940 KB |
testcase_08 | AC | 9 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 7 ms
6,940 KB |
testcase_13 | AC | 31 ms
6,944 KB |
testcase_14 | AC | 27 ms
9,328 KB |
testcase_15 | AC | 27 ms
9,460 KB |
testcase_16 | WA | - |
testcase_17 | AC | 59 ms
10,044 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 40 ms
7,408 KB |
testcase_23 | WA | - |
testcase_24 | AC | 17 ms
6,944 KB |
testcase_25 | AC | 7 ms
6,940 KB |
ソースコード
ll@h,@w,@x--,@y--,@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");