結果

問題 No.1916 Making Palindrome on Gird
ユーザー tktk_snsntktk_snsn
提出日時 2022-04-29 22:59:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,775 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 175,260 KB
最終ジャッジ日時 2024-06-29 04:37:19
合計ジャッジ時間 15,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,632 KB
testcase_01 AC 48 ms
54,272 KB
testcase_02 AC 71 ms
72,192 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 42 ms
54,528 KB
testcase_05 AC 45 ms
54,656 KB
testcase_06 AC 44 ms
54,400 KB
testcase_07 AC 44 ms
54,656 KB
testcase_08 AC 43 ms
54,656 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 45 ms
54,784 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
72,960 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 AC 268 ms
79,320 KB
testcase_18 AC 706 ms
102,016 KB
testcase_19 AC 637 ms
100,848 KB
testcase_20 AC 672 ms
100,096 KB
testcase_21 AC 679 ms
101,068 KB
testcase_22 AC 669 ms
101,632 KB
testcase_23 AC 54 ms
65,408 KB
testcase_24 AC 56 ms
64,896 KB
testcase_25 AC 54 ms
65,792 KB
testcase_26 AC 54 ms
65,792 KB
testcase_27 AC 55 ms
65,024 KB
testcase_28 AC 1,630 ms
175,260 KB
testcase_29 AC 1,713 ms
174,172 KB
testcase_30 AC 1,598 ms
174,592 KB
testcase_31 AC 1,680 ms
173,216 KB
testcase_32 AC 1,605 ms
175,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


H, W = map(int, input().split())
K = H + W - 1
gap = 0
if (H + W - 1) % 2 == 0:
    W += 1
    gap = 1
G = [[26] * W for _ in range(H)]

for i in range(H):
    S = input()
    for j, s in enumerate(S):
        if (i + j) * 2 >= K:
            j += gap
        G[i][j] = ord(s) - 97


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 (nx, ny) != (nnx, nny):
                        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 v in dp.values():
        ans += v
        ans %= mod
    print(ans)
0