結果

問題 No.1916 Making Palindrome on Gird
ユーザー とりゐとりゐ
提出日時 2022-02-22 01:33:16
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 843 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 271,116 KB
最終ジャッジ日時 2024-06-30 08:53:16
合計ジャッジ時間 16,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,488 KB
testcase_01 AC 43 ms
54,368 KB
testcase_02 AC 81 ms
77,036 KB
testcase_03 AC 40 ms
54,684 KB
testcase_04 AC 43 ms
61,352 KB
testcase_05 AC 40 ms
54,412 KB
testcase_06 AC 43 ms
59,760 KB
testcase_07 AC 45 ms
59,568 KB
testcase_08 AC 46 ms
60,156 KB
testcase_09 AC 46 ms
60,608 KB
testcase_10 AC 40 ms
55,708 KB
testcase_11 AC 42 ms
60,268 KB
testcase_12 AC 42 ms
59,288 KB
testcase_13 AC 78 ms
77,560 KB
testcase_14 AC 79 ms
77,464 KB
testcase_15 AC 379 ms
88,876 KB
testcase_16 AC 239 ms
80,764 KB
testcase_17 AC 711 ms
115,840 KB
testcase_18 AC 1,908 ms
200,284 KB
testcase_19 AC 1,977 ms
197,600 KB
testcase_20 AC 1,843 ms
200,028 KB
testcase_21 AC 1,889 ms
200,860 KB
testcase_22 AC 1,791 ms
196,692 KB
testcase_23 AC 55 ms
67,028 KB
testcase_24 AC 43 ms
57,552 KB
testcase_25 AC 57 ms
57,948 KB
testcase_26 AC 43 ms
57,944 KB
testcase_27 AC 43 ms
57,688 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
mod=10**9+7

h,w=map(int,input().split())
s=[]
for i in range(h):
  s.append(list(input()))

dp=defaultdict(int)
if (h+w)%2==0:
  for i1 in range(h):
    j1=(h+w-2)//2-i1
    if 0<=j1<w:
      dp[(i1,j1,i1,j1)]=1
else:
  for i1 in range(h):
    j1=(h+w-3)//2-i1
    if 0<=j1<w:
      for i2,j2 in [(i1+1,j1),(i1,j1+1)]:
        if 0<=i2<h and 0<=j2<w and s[i1][j1]==s[i2][j2]:
          dp[(i1,j1,i2,j2)]=1

for _ in range((h+w-2)//2):
  dp_new=defaultdict(int)
  for i1,j1,i2,j2 in dp:
    for ni1,nj1,ni2,nj2 in [(i1-1,j1,i2+1,j2),(i1,j1-1,i2+1,j2),(i1-1,j1,i2,j2+1),(i1,j1-1,i2,j2+1)]:
      if 0<=ni1<h and 0<=nj1<w and 0<=ni2<h and 0<=nj2<w and s[ni1][nj1]==s[ni2][nj2]:
        dp_new[(ni1,nj1,ni2,nj2)]+=dp[(i1,j1,i2,j2)]
        dp_new[(ni1,nj1,ni2,nj2)]%=mod
  dp=dp_new
  
print(dp[(0,0,h-1,w-1)])
0