結果

問題 No.1916 Making Palindrome on Gird
ユーザー lloyzlloyz
提出日時 2023-02-09 00:00:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 1,177 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 137,884 KB
最終ジャッジ日時 2024-07-06 08:32:49
合計ジャッジ時間 6,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 56 ms
65,408 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 43 ms
60,544 KB
testcase_05 AC 42 ms
60,544 KB
testcase_06 AC 41 ms
59,520 KB
testcase_07 AC 41 ms
60,672 KB
testcase_08 AC 43 ms
60,800 KB
testcase_09 AC 68 ms
84,024 KB
testcase_10 AC 34 ms
51,712 KB
testcase_11 AC 49 ms
62,080 KB
testcase_12 AC 37 ms
57,600 KB
testcase_13 AC 152 ms
102,228 KB
testcase_14 AC 107 ms
85,224 KB
testcase_15 AC 177 ms
108,416 KB
testcase_16 AC 148 ms
101,876 KB
testcase_17 AC 262 ms
136,416 KB
testcase_18 AC 301 ms
137,672 KB
testcase_19 AC 301 ms
137,480 KB
testcase_20 AC 298 ms
137,752 KB
testcase_21 AC 300 ms
137,792 KB
testcase_22 AC 301 ms
137,884 KB
testcase_23 AC 204 ms
137,200 KB
testcase_24 AC 189 ms
137,404 KB
testcase_25 AC 185 ms
137,380 KB
testcase_26 AC 194 ms
137,460 KB
testcase_27 AC 191 ms
137,220 KB
testcase_28 AC 326 ms
137,680 KB
testcase_29 AC 326 ms
137,672 KB
testcase_30 AC 324 ms
137,456 KB
testcase_31 AC 327 ms
137,660 KB
testcase_32 AC 328 ms
137,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [list(input()) for _ in range(h)]
mod = 10**9 + 7

m = (h + w) // 2
DP = [[[0 for _ in range(m)] for _ in range(m)] for _ in range(m)]
for k in range(m - 1, -1, -1):
    for i in range(k + 1):
        for j in range(k + 1):
            a = i
            b = k - i
            c = h - 1 - j
            d = w - 1 - (k - j)
            if 0 <= a < h and 0 <= b < w and 0 <= c < h and 0 <= d < w:
                if S[a][b] != S[c][d]:
                    continue
                if a > c or b > d:
                    continue
                if k == m - 1:
                    DP[i][j][k] = 1
                else:
                    if i < h - 1:
                        if j < h:
                            DP[i][j][k] += DP[i + 1][j + 1][k + 1]
                            DP[i][j][k] %= mod
                        DP[i][j][k] += DP[i + 1][j][k + 1]
                        DP[i][j][k] %= mod
                    if j < h:
                        DP[i][j][k] += DP[i][j + 1][k + 1]
                        DP[i][j][k] %= mod
                    DP[i][j][k] += DP[i][j][k + 1]
                    DP[i][j][k] %= mod
print(DP[0][0][0])
0