結果

問題 No.1916 Making Palindrome on Gird
ユーザー tktk_snsntktk_snsn
提出日時 2022-04-29 23:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,601 ms / 3,000 ms
コード長 1,762 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 181,916 KB
最終ジャッジ日時 2023-09-11 15:09:23
合計ジャッジ時間 16,089 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
71,580 KB
testcase_01 AC 94 ms
71,484 KB
testcase_02 AC 125 ms
77,672 KB
testcase_03 AC 93 ms
71,868 KB
testcase_04 AC 94 ms
71,620 KB
testcase_05 AC 96 ms
71,628 KB
testcase_06 AC 96 ms
71,748 KB
testcase_07 AC 95 ms
71,792 KB
testcase_08 AC 95 ms
71,756 KB
testcase_09 AC 95 ms
71,584 KB
testcase_10 AC 94 ms
71,520 KB
testcase_11 AC 99 ms
72,068 KB
testcase_12 AC 94 ms
71,636 KB
testcase_13 AC 125 ms
77,656 KB
testcase_14 AC 122 ms
77,516 KB
testcase_15 AC 225 ms
78,992 KB
testcase_16 AC 209 ms
78,700 KB
testcase_17 AC 303 ms
81,160 KB
testcase_18 AC 744 ms
107,276 KB
testcase_19 AC 692 ms
105,464 KB
testcase_20 AC 688 ms
106,104 KB
testcase_21 AC 717 ms
106,632 KB
testcase_22 AC 701 ms
106,280 KB
testcase_23 AC 100 ms
72,220 KB
testcase_24 AC 99 ms
72,132 KB
testcase_25 AC 97 ms
72,096 KB
testcase_26 AC 98 ms
72,168 KB
testcase_27 AC 97 ms
72,064 KB
testcase_28 AC 1,593 ms
181,900 KB
testcase_29 AC 1,598 ms
180,500 KB
testcase_30 AC 1,601 ms
181,300 KB
testcase_31 AC 1,585 ms
180,884 KB
testcase_32 AC 1,591 ms
181,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from collections import defaultdict
mod = 10 ** 9 + 7
U = 201


H, W = map(int, input().split())
G = [input() for _ in range(H)]
if H == 1 and W == 1:
    print(1)
    exit()


def id(x, y, xx, yy):
    res = x
    res = res * U + y
    res = res * U + xx
    res = res * U + yy
    return res


def parse(m):
    m, yy = divmod(m, U)
    m, xx = divmod(m, U)
    x, y = divmod(m, U)
    return x, y, xx, yy


if G[0][0] != G[H-1][W-1]:
    print(0)
    exit()
dp = defaultdict(int)
dp[id(0, 0, H-1, W-1)] = 1
while True:
    update = False
    finish = False
    ndp = defaultdict(int)
    for k, v in dp.items():
        x, y, xx, yy = parse(k)
        for di, dj in [(0, 1), (1, 0)]:
            nx = x + di
            ny = y + dj
            if nx < 0 or nx >= H or ny < 0 or ny >= W:
                continue
            for ddi, ddj in [(0, -1), (-1, 0)]:
                nnx = xx + ddi
                nny = yy + ddj
                if nnx < 0 or nnx >= H or nny < 0 or nny >= W:
                    continue
                if G[nx][ny] != G[nnx][nny]:
                    continue
                if (nx + ny) >= (nnx + nny):
                    finish = True
                    if (H + W - 1) % 2 == 1 and (nx, ny) != (nnx, nny):
                        continue
                    if (H + W - 1) % 2 == 0 and ((x, y) != (nnx, nny) or (nx, ny) != (xx, yy)):
                        continue
                ndp[id(nx, ny, nnx, nny)] += v
                ndp[id(nx, ny, nnx, nny)] %= mod
                update = True
    dp = ndp
    if finish:
        break
    if not update:
        break

if not finish:
    print(0)
else:
    ans = 0
    for k, v in dp.items():
        ans += v
        ans %= mod
    print(ans)
0