結果

問題 No.1916 Making Palindrome on Gird
ユーザー titiatitia
提出日時 2022-04-29 22:08:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,353 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 270,824 KB
最終ジャッジ日時 2024-06-29 03:37:21
合計ジャッジ時間 23,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
61,728 KB
testcase_01 AC 36 ms
55,108 KB
testcase_02 AC 120 ms
78,840 KB
testcase_03 AC 40 ms
54,788 KB
testcase_04 AC 43 ms
60,044 KB
testcase_05 AC 43 ms
60,192 KB
testcase_06 AC 47 ms
60,600 KB
testcase_07 AC 45 ms
60,980 KB
testcase_08 AC 43 ms
60,256 KB
testcase_09 AC 41 ms
60,056 KB
testcase_10 AC 38 ms
54,784 KB
testcase_11 AC 44 ms
61,300 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
77,884 KB
testcase_15 WA -
testcase_16 AC 660 ms
98,248 KB
testcase_17 AC 1,085 ms
141,392 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,999 ms
266,304 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 39 ms
54,448 KB
testcase_24 AC 39 ms
54,932 KB
testcase_25 AC 40 ms
55,212 KB
testcase_26 AC 39 ms
54,732 KB
testcase_27 AC 38 ms
54,936 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=10**9+7

H,W=map(int,input().split())
MAP=[input().strip() for i in range(H)]

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

DP=dict()
DP[0,0,H-1,W-1]=1

for i in range((H+W-2)//2):
    NDP=defaultdict(int)

    for x,y,z,w in DP:
        if 0<=x<H and 0<=z<H and 0<=y+1<W and 0<=w-1<W and MAP[x][y+1]==MAP[z][w-1]:
            NDP[x,y+1,z,w-1]+=DP[x,y,z,w]
            NDP[x,y+1,z,w-1]%=mod

        if 0<=x<H and 0<=z-1<H and 0<=y+1<W and 0<=w<W and MAP[x][y+1]==MAP[z-1][w]:
            NDP[x,y+1,z-1,w]+=DP[x,y,z,w]
            NDP[x,y+1,z-1,w]%=mod

        if 0<=x+1<H and 0<=z<H and 0<=y<W and 0<=w-1<W and MAP[x+1][y]==MAP[z][w-1]:
            NDP[x+1,y,z,w-1]+=DP[x,y,z,w]
            NDP[x+1,y,z,w-1]%=mod

        if 0<=x+1<H and 0<=z-1<H and 0<=y<W and 0<=w<W and MAP[x+1][y]==MAP[z-1][w]:
            NDP[x+1,y,z-1,w]+=DP[x,y,z,w]
            NDP[x+1,y,z-1,w]%=mod
    DP=NDP

if (H+W)%2==0:
    ANS=0
    for x,y,z,w in DP:
        if x==z and y==w:
            ANS+=DP[x,y,z,w]
            ANS%=mod
    print(ANS)
    
else:
    ANS=0
    for x,y,z,w in DP:
        if x==z and y+1==w:
            ANS+=DP[x,y,z,w]
            ANS%=mod
        if x+1==-z and y==w:
            ANS+=DP[x,y,z,w]
            ANS%=mod
            
    print(ANS)
    
    
0