結果

問題 No.1916 Making Palindrome on Gird
ユーザー titiatitia
提出日時 2022-04-29 22:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,097 ms / 3,000 ms
コード長 2,112 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 149,860 KB
最終ジャッジ日時 2024-06-29 04:18:29
合計ジャッジ時間 12,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,280 KB
testcase_01 AC 39 ms
52,904 KB
testcase_02 AC 79 ms
76,368 KB
testcase_03 AC 38 ms
52,816 KB
testcase_04 AC 38 ms
52,872 KB
testcase_05 AC 39 ms
54,376 KB
testcase_06 AC 39 ms
53,884 KB
testcase_07 AC 38 ms
53,348 KB
testcase_08 AC 39 ms
53,212 KB
testcase_09 AC 39 ms
52,816 KB
testcase_10 AC 37 ms
52,768 KB
testcase_11 AC 40 ms
53,656 KB
testcase_12 AC 39 ms
54,316 KB
testcase_13 AC 84 ms
76,188 KB
testcase_14 AC 60 ms
69,596 KB
testcase_15 AC 332 ms
80,048 KB
testcase_16 AC 326 ms
79,972 KB
testcase_17 AC 400 ms
80,956 KB
testcase_18 AC 689 ms
98,628 KB
testcase_19 AC 707 ms
98,364 KB
testcase_20 AC 708 ms
98,652 KB
testcase_21 AC 702 ms
97,656 KB
testcase_22 AC 697 ms
98,940 KB
testcase_23 AC 38 ms
53,160 KB
testcase_24 AC 39 ms
52,976 KB
testcase_25 AC 39 ms
53,236 KB
testcase_26 AC 39 ms
53,156 KB
testcase_27 AC 38 ms
53,820 KB
testcase_28 AC 1,077 ms
148,384 KB
testcase_29 AC 1,097 ms
149,860 KB
testcase_30 AC 1,055 ms
146,948 KB
testcase_31 AC 1,029 ms
149,636 KB
testcase_32 AC 1,067 ms
149,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

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

#H,W=200,200
#MAP=["a"*W for i in range(H)]

if MAP[0][0]!=MAP[-1][-1]:
    print(0)
    exit()
def cc(x,y,z,w):
    return x*8000000+y*40000+z*200+w

def re(r):
    w=r%200
    r//=200
    z=r%200
    r//=200
    y=r%200
    x=r//200

    return x,y,z,w

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

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

    for r in DP:
        x,y,z,w=re(r)
        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]:
            if cc(x,y+1,z,w-1) in NDP:
                NDP[cc(x,y+1,z,w-1)]+=DP[cc(x,y,z,w)]
                NDP[cc(x,y+1,z,w-1)]%=mod
            else:
                NDP[cc(x,y+1,z,w-1)]=DP[cc(x,y,z,w)]
                

        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]:
            if cc(x,y+1,z-1,w) in NDP:
                NDP[cc(x,y+1,z-1,w)]+=DP[cc(x,y,z,w)]
                NDP[cc(x,y+1,z-1,w)]%=mod
            else:
                NDP[cc(x,y+1,z-1,w)]=DP[cc(x,y,z,w)]

        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]:
            if cc(x+1,y,z,w-1) in NDP:
                NDP[cc(x+1,y,z,w-1)]+=DP[cc(x,y,z,w)]
                NDP[cc(x+1,y,z,w-1)]%=mod
            else:
                NDP[cc(x+1,y,z,w-1)]=DP[cc(x,y,z,w)]

        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]:
            if cc(x+1,y,z-1,w) in NDP:
                NDP[cc(x+1,y,z-1,w)]+=DP[cc(x,y,z,w)]
                NDP[cc(x+1,y,z-1,w)]%=mod
            else:
                NDP[cc(x+1,y,z-1,w)]=DP[cc(x,y,z,w)]

    DP=NDP

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