結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2022-04-29 22:22:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,186 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 262,584 KB |
最終ジャッジ日時 | 2024-06-29 03:57:33 |
合計ジャッジ時間 | 14,835 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,552 KB |
testcase_01 | AC | 33 ms
53,080 KB |
testcase_02 | AC | 59 ms
74,240 KB |
testcase_03 | AC | 37 ms
53,012 KB |
testcase_04 | AC | 32 ms
52,532 KB |
testcase_05 | AC | 37 ms
59,196 KB |
testcase_06 | AC | 37 ms
58,216 KB |
testcase_07 | AC | 36 ms
58,252 KB |
testcase_08 | AC | 37 ms
59,832 KB |
testcase_09 | AC | 35 ms
57,904 KB |
testcase_10 | AC | 32 ms
52,064 KB |
testcase_11 | AC | 37 ms
57,928 KB |
testcase_12 | AC | 36 ms
58,748 KB |
testcase_13 | AC | 55 ms
73,744 KB |
testcase_14 | AC | 52 ms
69,664 KB |
testcase_15 | AC | 202 ms
82,652 KB |
testcase_16 | AC | 148 ms
78,672 KB |
testcase_17 | AC | 362 ms
96,380 KB |
testcase_18 | AC | 1,208 ms
181,512 KB |
testcase_19 | AC | 1,164 ms
176,028 KB |
testcase_20 | AC | 1,148 ms
178,764 KB |
testcase_21 | AC | 1,181 ms
179,676 KB |
testcase_22 | AC | 1,205 ms
178,496 KB |
testcase_23 | AC | 34 ms
55,180 KB |
testcase_24 | AC | 33 ms
54,384 KB |
testcase_25 | AC | 33 ms
55,464 KB |
testcase_26 | AC | 33 ms
55,176 KB |
testcase_27 | AC | 33 ms
54,368 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
ソースコード
""" https://yukicoder.me/problems/no/1916 dpかな 200*200*200? """ import sys from sys import stdin H,W = map(int,stdin.readline().split()) if H == W == 1: print (1) sys.exit() 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][newy1] == 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)