結果

問題 No.1916 Making Palindrome on Gird
ユーザー kozykozy
提出日時 2022-04-29 22:19:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 640,624 KB
最終ジャッジ日時 2024-06-29 03:54:10
合計ジャッジ時間 22,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,292 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 59 ms
67,072 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
51,840 KB
testcase_11 RE -
testcase_12 AC 42 ms
58,112 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 MLE -
権限があれば一括ダウンロードができます

ソースコード

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:
          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
            else:
              dp[(a,b,c,d)]=(dp[(a+1,b,c-1,d)]+dp[(a,b+1,c,d-1)]+dp[(a,b+1,c-1,d)]+dp[(a+1,b,c,d-1)])%mod
          else:
            dp[(i,k-i,H-1-j,W-1-(k-j))]=0
  print(dp[(0,0,H-1,W-1)])
main()
0