結果

問題 No.1916 Making Palindrome on Gird
ユーザー ああいいああいい
提出日時 2022-04-29 21:52:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,891 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 265,256 KB
最終ジャッジ日時 2024-06-29 03:17:24
合計ジャッジ時間 23,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,520 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 93 ms
76,928 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 48 ms
59,392 KB
testcase_05 AC 48 ms
59,776 KB
testcase_06 AC 48 ms
60,416 KB
testcase_07 AC 49 ms
59,904 KB
testcase_08 AC 48 ms
60,160 KB
testcase_09 AC 47 ms
59,904 KB
testcase_10 AC 40 ms
54,400 KB
testcase_11 AC 46 ms
60,544 KB
testcase_12 AC 45 ms
59,904 KB
testcase_13 AC 88 ms
76,992 KB
testcase_14 AC 82 ms
76,768 KB
testcase_15 AC 488 ms
98,500 KB
testcase_16 AC 372 ms
89,612 KB
testcase_17 AC 859 ms
133,792 KB
testcase_18 TLE -
testcase_19 AC 2,961 ms
265,024 KB
testcase_20 AC 2,966 ms
265,256 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 40 ms
53,248 KB
testcase_24 AC 39 ms
53,128 KB
testcase_25 AC 39 ms
53,376 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 40 ms
53,528 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
S = [input() for _ in range(H)]
P = 10 ** 9 + 7

import sys
if S[0][0] != S[-1][-1]:
    print(0)
    exit()
from collections import defaultdict
d = defaultdict(int)
d[(0,0,H - 1,W - 1)] = 1
ans = 0
u = H + W - 2
if u % 2 == 0:
    for _ in range(u // 2):
        nx = defaultdict(int)
        for h,w,hh,ww in d:
            for i,j in [(1,0),(0,1)]:
                for k,l in [(-1,0),(0,-1)]:
                    if h + i < H and w + j < W and hh + k >= 0 and ww + l >= 0:
                        if S[h + i][w + j] == S[hh + k][ww + l]:
                            nx[(h + i,w + j,hh + k,ww + l)] += d[(h,w,hh,ww)]
                            nx[(h + i,w + j,hh + k,ww + l)] %= P
        d = nx
    for h,w,hh,ww in d:
        if h == hh and w == ww:
            ans += d[(h,w,hh,ww)]
            ans %= P
    print(ans)
else:
    for _ in range(u // 2 + 1):
        nx = defaultdict(int)
        if _ < u // 2:
            for h,w,hh,ww in d:
                for i,j in [(1,0),(0,1)]:
                    for k,l in [(-1,0),(0,-1)]:
                        if h + i < H and w + j < W and hh + k >= 0 and ww + l >= 0:
                            if S[h + i][w + j] == S[hh + k][ww + l]:
                                nx[(h + i,w + j,hh + k,ww + l)] += d[(h,w,hh,ww)]
                                nx[(h + i,w + j,hh + k,ww + l)] %= P
        else:
            for h,w,hh,ww in d:
                for i,j in [(1,0),(0,1)]:
                    for k,l in [(-1,0),(0,-1)]:
                        if h + i < H and w + j < W and hh + k >= 0 and ww + l >= 0:
                            if S[h + i][w + j] == S[hh + k][ww + l]:
                                if h + i == hh and w + j == ww and hh + k == h and ww + l == w:
                                    ans += d[(h,w,hh,ww)]
                                    ans %= P
        d = nx
    print(ans)
0