結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2022-04-29 22:18:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,141 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 268,416 KB |
最終ジャッジ日時 | 2024-06-29 03:49:12 |
合計ジャッジ時間 | 13,610 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,856 KB |
testcase_01 | AC | 36 ms
52,352 KB |
testcase_02 | AC | 65 ms
73,856 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
52,224 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 41 ms
57,984 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 38 ms
53,120 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 39 ms
54,784 KB |
testcase_24 | AC | 40 ms
54,400 KB |
testcase_25 | AC | 39 ms
54,016 KB |
testcase_26 | AC | 39 ms
54,400 KB |
testcase_27 | AC | 38 ms
54,144 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
""" https://yukicoder.me/problems/no/1916 dpかな 200*200*200? """ import sys from sys import stdin H,W = map(int,stdin.readline().split()) S = [list(stdin.readline()[:-1]) for i in range(H) ] mod = 10**9+7 q = {} if S[0][0] == S[H-1][W-1]: q[(0,0,H-1,W-1)] = 1 ans = 0 while q: newq = {} for tup in q: x1,y1,x2,y2 = tup cnt = q[tup] for newx1,newy1 in ( (x1+1,y1) , (x1,y1+1) ): for newx2,newy2 in ( (x2-1,y2) , (x2,y2-1) ): fl = (0<=newx1<H and 0<=newy1<W and 0<=newx2<H and 0<=newy2<W) if fl and newx1<=newx2 and newy1<=newy2 and S[newx1][newy2] == S[newx2][newy2]: newtup = (newx1,newy1,newx2,newy2) diff = abs(newx2-newx1) + abs(newy2-newy1) if diff <= 1: ans += cnt ans %= mod elif newtup not in newq: newq[newtup] = cnt else: newq[newtup] += cnt newq[newtup] %= mod q = newq #print (q) print (ans % mod)