結果

問題 No.1916 Making Palindrome on Gird
ユーザー とりゐとりゐ
提出日時 2022-02-22 01:36:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 3,000 ms
コード長 920 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 141,132 KB
最終ジャッジ日時 2024-06-30 08:52:38
合計ジャッジ時間 12,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,284 KB
testcase_01 AC 35 ms
53,320 KB
testcase_02 AC 67 ms
74,040 KB
testcase_03 AC 34 ms
52,868 KB
testcase_04 AC 58 ms
69,164 KB
testcase_05 AC 55 ms
65,116 KB
testcase_06 AC 54 ms
66,352 KB
testcase_07 AC 52 ms
66,460 KB
testcase_08 AC 66 ms
71,156 KB
testcase_09 AC 37 ms
53,080 KB
testcase_10 AC 36 ms
52,528 KB
testcase_11 AC 55 ms
65,840 KB
testcase_12 AC 52 ms
63,256 KB
testcase_13 AC 275 ms
99,020 KB
testcase_14 AC 204 ms
91,480 KB
testcase_15 AC 318 ms
105,580 KB
testcase_16 AC 240 ms
93,124 KB
testcase_17 AC 527 ms
131,604 KB
testcase_18 AC 574 ms
140,496 KB
testcase_19 AC 589 ms
140,604 KB
testcase_20 AC 583 ms
140,596 KB
testcase_21 AC 571 ms
140,508 KB
testcase_22 AC 590 ms
141,132 KB
testcase_23 AC 485 ms
139,440 KB
testcase_24 AC 479 ms
139,532 KB
testcase_25 AC 471 ms
139,792 KB
testcase_26 AC 484 ms
140,740 KB
testcase_27 AC 484 ms
139,876 KB
testcase_28 AC 566 ms
140,572 KB
testcase_29 AC 562 ms
140,596 KB
testcase_30 AC 558 ms
140,572 KB
testcase_31 AC 560 ms
140,588 KB
testcase_32 AC 560 ms
140,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

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

def conv(i,j,k):
  return h*w*i+h*j+k

dp=[0]*(h*w*h)
if (h+w)%2==0:
  for i1 in range(h):
    j1=(h+w-2)//2-i1
    if 0<=j1<w:
      dp[conv(i1,j1,i1)]=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[conv(i1,j1,i2)]=1

for m in range((h+w-2)//2,0,-1):
  for i1 in range(h):
    j1=m-i1
    if 0<=j1<w:
      for i2 in range(h):
        j2=h+w-2-m-i2
        if 0<=j2<w:
          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[conv(ni1,nj1,ni2)]+=dp[conv(i1,j1,i2)]
              dp[conv(ni1,nj1,ni2)]%=mod
  
print(dp[conv(0,0,h-1)])
0