結果

問題 No.1916 Making Palindrome on Gird
ユーザー googol_S0googol_S0
提出日時 2022-04-29 22:03:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 209,164 KB
最終ジャッジ日時 2024-06-29 03:31:46
合計ジャッジ時間 19,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 100 ms
76,208 KB
testcase_03 WA -
testcase_04 AC 93 ms
76,544 KB
testcase_05 AC 78 ms
72,576 KB
testcase_06 AC 72 ms
71,808 KB
testcase_07 AC 97 ms
76,160 KB
testcase_08 AC 74 ms
72,992 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 95 ms
76,288 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 366 ms
108,928 KB
testcase_15 WA -
testcase_16 AC 447 ms
103,296 KB
testcase_17 AC 1,138 ms
187,572 KB
testcase_18 AC 1,291 ms
208,912 KB
testcase_19 AC 1,313 ms
208,768 KB
testcase_20 AC 1,277 ms
208,808 KB
testcase_21 AC 1,303 ms
208,896 KB
testcase_22 AC 1,313 ms
208,984 KB
testcase_23 AC 41 ms
52,608 KB
testcase_24 AC 41 ms
52,608 KB
testcase_25 AC 42 ms
52,992 KB
testcase_26 AC 43 ms
52,864 KB
testcase_27 AC 40 ms
52,864 KB
testcase_28 AC 1,357 ms
209,164 KB
testcase_29 AC 1,350 ms
208,640 KB
testcase_30 AC 1,342 ms
208,768 KB
testcase_31 AC 1,359 ms
208,536 KB
testcase_32 AC 1,363 ms
208,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
H,W=map(int,input().split())
S=[input() for i in range(H)]
if S[0][0]!=S[-1][-1]:
  print(0)
  exit()
N=H+W-2
DP=[[[0]*H for i in range(H)] for j in range(N+1)]
DP[0][0][H-1]=1
ANS=0
for i in range(N):
  for j in range(H):
    for k in range(H):
      x1,y1=j,i-j
      x2,y2=k,W-1-(i-(H-1-k))
      if y1<0 or y2<0 or y2>=W:
        continue
      if abs(x1-x2)+abs(y1-y2)<=1:
        ANS=(ANS+DP[i][j][k])%mod
      for l in range(2):
        for m in range(2):
          x3,y3=x1+l,y1+(l^1)
          x4,y4=x2-m,y2-(m^1)
          if H<=x3 or W<=y3 or x4<0 or y4<0:
            continue
          if S[x3][y3]==S[x4][y4]:
            DP[i+1][j+l][k-m]=(DP[i+1][j+l][k-m]+DP[i][j][k])%mod
print(ANS)
0