結果

問題 No.1916 Making Palindrome on Gird
ユーザー とりゐとりゐ
提出日時 2022-04-12 12:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 912 ms / 3,000 ms
コード長 1,003 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 144,796 KB
最終ジャッジ日時 2024-05-10 00:03:05
合計ジャッジ時間 17,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 91 ms
76,652 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 76 ms
70,272 KB
testcase_05 AC 67 ms
70,272 KB
testcase_06 AC 65 ms
68,096 KB
testcase_07 AC 70 ms
70,016 KB
testcase_08 AC 86 ms
76,124 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 68 ms
69,480 KB
testcase_12 AC 59 ms
65,408 KB
testcase_13 AC 395 ms
101,072 KB
testcase_14 AC 299 ms
93,380 KB
testcase_15 AC 457 ms
107,900 KB
testcase_16 AC 342 ms
95,444 KB
testcase_17 AC 810 ms
135,388 KB
testcase_18 AC 870 ms
144,796 KB
testcase_19 AC 912 ms
144,668 KB
testcase_20 AC 860 ms
144,552 KB
testcase_21 AC 883 ms
144,596 KB
testcase_22 AC 872 ms
144,744 KB
testcase_23 AC 634 ms
143,372 KB
testcase_24 AC 627 ms
143,080 KB
testcase_25 AC 618 ms
143,240 KB
testcase_26 AC 655 ms
144,696 KB
testcase_27 AC 653 ms
143,792 KB
testcase_28 AC 842 ms
144,496 KB
testcase_29 AC 837 ms
144,432 KB
testcase_30 AC 845 ms
144,592 KB
testcase_31 AC 839 ms
144,472 KB
testcase_32 AC 839 ms
144,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

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

def check(x,y):
  return 0<=x<h and 0<=y<w

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

dx1=[-1,0]
dy1=[0,-1]
dx2=[1,0]
dy2=[0,1]

for m in range((h+w-2)//2,0,-1):
  for i1 in range(h):
    j1=m-i1
    if not 0<=j1<w:
      continue
    for i2 in range(h):
      j2=h+w-2-m-i2
      if not 0<=j2<w:
        continue
      for di1,dj1 in zip(dx1,dy1):
        for di2,dj2 in zip(dx2,dy2):
          ni1,nj1,ni2,nj2=i1+di1,j1+dj1,i2+di2,j2+dj2
          if check(ni1,nj1) and check(ni2,nj2) and s[ni1][nj1]==s[ni2][nj2]:
            dp[ni1][nj1][ni2]+=dp[i1][j1][i2]
            dp[ni1][nj1][ni2]%=mod
  
print(dp[0][0][h-1])
0