結果

問題 No.1916 Making Palindrome on Gird
ユーザー roarisroaris
提出日時 2022-05-14 19:37:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,318 ms / 3,000 ms
コード長 1,542 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 148,608 KB
最終ジャッジ日時 2024-07-23 06:11:14
合計ジャッジ時間 19,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,904 KB
testcase_01 AC 41 ms
54,528 KB
testcase_02 AC 87 ms
77,696 KB
testcase_03 AC 48 ms
60,544 KB
testcase_04 AC 75 ms
73,344 KB
testcase_05 AC 77 ms
74,880 KB
testcase_06 AC 73 ms
72,064 KB
testcase_07 AC 87 ms
77,696 KB
testcase_08 AC 83 ms
77,568 KB
testcase_09 AC 49 ms
61,184 KB
testcase_10 AC 43 ms
54,400 KB
testcase_11 AC 71 ms
72,192 KB
testcase_12 AC 68 ms
69,888 KB
testcase_13 AC 525 ms
114,816 KB
testcase_14 AC 361 ms
104,064 KB
testcase_15 AC 662 ms
120,104 KB
testcase_16 AC 510 ms
112,848 KB
testcase_17 AC 1,094 ms
142,936 KB
testcase_18 AC 1,316 ms
148,516 KB
testcase_19 AC 1,318 ms
148,352 KB
testcase_20 AC 1,261 ms
148,480 KB
testcase_21 AC 1,257 ms
148,224 KB
testcase_22 AC 1,246 ms
148,592 KB
testcase_23 AC 43 ms
54,780 KB
testcase_24 AC 43 ms
54,016 KB
testcase_25 AC 43 ms
54,912 KB
testcase_26 AC 42 ms
54,144 KB
testcase_27 AC 43 ms
54,528 KB
testcase_28 AC 1,271 ms
148,196 KB
testcase_29 AC 1,300 ms
148,312 KB
testcase_30 AC 1,292 ms
148,224 KB
testcase_31 AC 1,272 ms
148,608 KB
testcase_32 AC 1,275 ms
148,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

H, W = map(int, input().split())
S = [input()[:-1] for _ in range(H)]

if S[0][0]!=S[-1][-1]:
    exit(print(0))

ind = [[-1]*W for _ in range(H)]
d = defaultdict(list)

for i in range(H):
    for j in range(W):
        ind[i][j] = len(d[H-1-i+W-1-j])
        d[H-1-i+W-1-j].append((i, j))

dp = [[[0]*210 for _ in range(W)] for _ in range(H)]
dp[0][0][0] = 1
MOD = 10**9+7

for i in range(H):
    for j in range(W):
        for k in range(210):
            if k>=len(d[i+j]):
                continue
            
            i2, j2 = d[i+j][k]
            
            if i>=i2 and j>=j2:
                continue
            
            for ni, nj in [(i+1, j), (i, j+1)]:
                for ni2, nj2 in [(i2-1, j2), (i2, j2-1)]:
                    if not (0<=ni<H and 0<=nj<W and 0<=ni2<H and 0<=nj2<W):
                        continue
                    
                    if (ni, nj)==(ni2, nj2) or S[ni][nj]==S[ni2][nj2]:
                        dp[ni][nj][ind[ni2][nj2]] += dp[i][j][k]
                        dp[ni][nj][ind[ni2][nj2]] %= MOD

ans = 0

for i in range(H):
    for j in range(W):
        if 2*(i+j)==H+W-2:
            ans += dp[i][j][ind[i][j]]
            ans %= MOD
            
        for ni, nj in [(i+1, j), (i, j+1)]:
            if not (0<=ni<H and 0<=nj<W):
                continue
            
            if i+j==H-ni+W-nj-2 and i+j+H-ni+W-nj==H+W-1:
                ans += dp[i][j][ind[ni][nj]]
                ans %= MOD

print(ans)
0