結果

問題 No.1916 Making Palindrome on Gird
ユーザー sotanishysotanishy
提出日時 2022-04-29 21:40:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,030 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 276,260 KB
最終ジャッジ日時 2024-06-29 03:00:12
合計ジャッジ時間 16,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,264 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 79 ms
74,496 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 50 ms
59,136 KB
testcase_06 AC 52 ms
59,520 KB
testcase_07 AC 51 ms
59,776 KB
testcase_08 AC 51 ms
59,648 KB
testcase_09 AC 50 ms
58,880 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 51 ms
59,648 KB
testcase_12 WA -
testcase_13 AC 80 ms
73,216 KB
testcase_14 AC 79 ms
72,704 KB
testcase_15 WA -
testcase_16 AC 227 ms
84,480 KB
testcase_17 AC 507 ms
117,504 KB
testcase_18 AC 1,711 ms
264,248 KB
testcase_19 AC 1,708 ms
264,900 KB
testcase_20 AC 1,685 ms
266,788 KB
testcase_21 AC 1,726 ms
265,976 KB
testcase_22 AC 1,728 ms
264,968 KB
testcase_23 AC 45 ms
53,888 KB
testcase_24 AC 44 ms
54,144 KB
testcase_25 AC 42 ms
54,528 KB
testcase_26 AC 43 ms
54,272 KB
testcase_27 AC 42 ms
54,144 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline

mod = 10**9 + 7
H, W = map(int, input().split())
S = [input().rstrip() for _ in range(H)]
if S[0][0] != S[H-1][W-1]:
    print(0)
    exit()
dp = {(0, 0, H-1, W-1): 1}
for k in range((H+W-1)//2):
    ndp = defaultdict(int)
    for (i, j, k, l), w in dp.items():
        w %= mod
        for di, dj in [(1, 0), (0, 1)]:
            ni, nj = i+di, j+dj
            if ni < 0 or H <= ni or nj < 0 or W <= nj:
                continue
            for dk, dl in [(-1, 0), (0, -1)]:
                nk, nl = k+dk, l+dl
                if nk < 0 or H <= nk or nl < 0 or W <= nl:
                    continue
                if S[ni][nj] == S[nk][nl]:
                    ndp[(ni, nj, nk, nl)] += w
    dp = ndp

ans = 0
if (H+W-1)%2:
    for (i, j, k, l), w in dp.items():
        if (i, j) == (k, l):
            ans = (ans + w) % mod
else:
    for (i, j, k, l), w in dp.items():
        if abs(i-k)+abs(j-l) == 1:
            ans = (ans + w) % mod
print(ans)

0