結果

問題 No.1916 Making Palindrome on Gird
ユーザー kozykozy
提出日時 2022-04-30 00:45:56
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,080 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 640,792 KB
最終ジャッジ日時 2024-06-29 06:42:20
合計ジャッジ時間 11,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,284 KB
testcase_01 MLE -
testcase_02 AC 65 ms
76,492 KB
testcase_03 AC 38 ms
58,168 KB
testcase_04 AC 47 ms
64,116 KB
testcase_05 AC 59 ms
72,600 KB
testcase_06 AC 43 ms
63,808 KB
testcase_07 AC 52 ms
68,552 KB
testcase_08 AC 54 ms
70,616 KB
testcase_09 AC 42 ms
62,568 KB
testcase_10 AC 34 ms
53,632 KB
testcase_11 AC 42 ms
64,308 KB
testcase_12 AC 37 ms
60,080 KB
testcase_13 AC 1,192 ms
315,712 KB
testcase_14 AC 684 ms
251,992 KB
testcase_15 AC 1,821 ms
362,024 KB
testcase_16 AC 1,134 ms
296,172 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  H,W=map(int,input().split())
  L=list()
  for i in range(H):
    S=input()
    L.append(S)
  mod=10**9+7
  dp=dict()
  for k in range(((H+W)//2)-1,-1,-1):
    #k:距離
    for i in range(k+1):
      for j in range(k+1):
        a=i
        b=k-i
        c=H-1-j
        d=W-1-(k-j)
        if 0<=a<H and 0<=b<W and 0<=c<H and 0<=d<W:
          dp[(a,b,c,d)]=0
          if L[a][b]==L[c][d]:
            if not (a<=c and b<=d):
                dp[(a,b,c,d)]=0
                continue
            if k==((H+W)//2)-1:
              dp[(a,b,c,d)]=1
              continue
            else:
              if a!=H-1:
                if c!=0:
                  dp[(a,b,c,d)]+=dp[(a+1,b,c-1,d)]
                if d!=0:
                  dp[(a,b,c,d)]+=dp[(a+1,b,c,d-1)]
              if b!=W-1:
                if c!=0:
                  dp[(a,b,c,d)]+=dp[(a,b+1,c-1,d)]
                if d!=0:
                  dp[(a,b,c,d)]+=dp[(a,b+1,c,d-1)]
              dp[(a,b,c,d)]%=mod
          else:
            dp[(i,k-i,H-1-j,W-1-(k-j))]=0
  print(dp[(0,0,H-1,W-1)])
main()
0