結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | pengin_2000 |
提出日時 | 2022-07-23 15:48:46 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,734 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,632 KB |
最終ジャッジ日時 | 2024-07-05 05:00:37 |
合計ジャッジ時間 | 4,007 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 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 | 152 ms
5,376 KB |
testcase_08 | AC | 37 ms
5,376 KB |
testcase_09 | AC | 198 ms
5,504 KB |
testcase_10 | AC | 198 ms
5,632 KB |
testcase_11 | AC | 189 ms
5,376 KB |
testcase_12 | AC | 187 ms
5,376 KB |
testcase_13 | AC | 189 ms
5,632 KB |
testcase_14 | AC | 106 ms
5,504 KB |
testcase_15 | AC | 105 ms
5,632 KB |
testcase_16 | AC | 26 ms
5,376 KB |
testcase_17 | AC | 281 ms
5,376 KB |
testcase_18 | AC | 25 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 224 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 137 ms
5,376 KB |
ソースコード
#include<stdio.h> int h, w, y, x; long long int a[502][502]; int heap[1000006], hl; int comp_h(int i, int j) { if (a[heap[i] / w][heap[i] % w] > a[heap[j] / w][heap[j] % w]) return 1; else return -1; } void swap_h(int i, int j) { int f = heap[i]; heap[i] = heap[j]; heap[j] = f; return; } void push(int ne) { heap[hl] = ne; int p = hl; hl++; for (; p > 0; p = (p - 1) / 2) if (comp_h((p - 1) / 2, p) > 0) swap_h((p - 1) / 2, p); return; } int pop() { hl--; swap_h(0, hl); int p = 0; for (;;) { if (2 * p + 2 < hl) { if (comp_h(2 * p + 1, 2 * p + 2) > 0) { if (comp_h(p, 2 * p + 2) > 0) swap_h(p, 2 * p + 2); p = 2 * p + 2; } else { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } } else if (2 * p + 1 < hl) { if (comp_h(p, 2 * p + 1) > 0) swap_h(p, 2 * p + 1); p = 2 * p + 1; } else break; } return heap[hl]; } int used[502][502]; int main() { scanf("%d %d %d %d", &h, &w, &y, &x); int i, j, k; for (i = 0; i < h; i++) for (j = 0; j < w; j++) scanf("%lld", &a[i][j]); int di[4] = { -1,0,1,0 }; int dj[4] = { 0,-1,0,1 }; for (i = 0; i < h; i++) for (j = 0; j < w; j++) used[i][j] = 0; int ii, jj; long long int v = a[y - 1][x - 1]; a[y - 1][x - 1] = 0; hl = 0; push(w * (y - 1) + x - 1); while (hl > 0) { i = pop(); j = i % w; i /= w; if (used[i][j] > 0) continue; if (a[i][j] >= v) { printf("No\n"); return 0; } v += a[i][j]; used[i][j]++; for (k = 0; k < 4; k++) { ii = i + di[k]; jj = j + dj[k]; if (ii < 0 || jj < 0 || i == h || j == w) continue; if (used[ii][jj] > 0) continue; push(w * ii + jj); } } printf("Yes\n"); return 0; }