結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | tktk_snsn |
提出日時 | 2022-04-29 23:18:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,567 bytes |
コンパイル時間 | 796 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 181,824 KB |
最終ジャッジ日時 | 2024-06-29 05:03:42 |
合計ジャッジ時間 | 14,184 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,888 KB |
testcase_01 | AC | 42 ms
54,272 KB |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
54,144 KB |
testcase_04 | WA | - |
testcase_05 | AC | 43 ms
54,656 KB |
testcase_06 | AC | 43 ms
54,912 KB |
testcase_07 | WA | - |
testcase_08 | AC | 44 ms
54,528 KB |
testcase_09 | AC | 43 ms
54,400 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 66 ms
70,272 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 | 44 ms
54,912 KB |
testcase_24 | AC | 42 ms
54,528 KB |
testcase_25 | AC | 44 ms
54,784 KB |
testcase_26 | AC | 44 ms
54,656 KB |
testcase_27 | AC | 44 ms
55,040 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
from collections import Counter from collections import defaultdict mod = 10 ** 9 + 7 U = 201 H, W = map(int, input().split()) G = [input() for _ in range(H)] # H, W = 200, 200 # G = ["a" * W for _ in range(H)] def id(x, y, xx, yy): res = x res = res * U + y res = res * U + xx res = res * U + yy return res def parse(m): m, yy = divmod(m, U) m, xx = divmod(m, U) x, y = divmod(m, U) return x, y, xx, yy if G[0][0] != G[H-1][W-1]: print(0) exit() dp = defaultdict(int) dp[id(0, 0, H-1, W-1)] = 1 while True: finish = False update = False ndp = defaultdict(int) for k, v in dp.items(): x, y, xx, yy = parse(k) for di, dj in [(0, 1), (1, 0)]: nx = x + di ny = y + dj if nx < 0 or nx >= H or ny < 0 or ny >= W: continue for ddi, ddj in [(0, -1), (-1, 0)]: nnx = xx + ddi nny = yy + ddj if nnx < 0 or nnx >= H or nny < 0 or nny >= W: continue if G[nx][ny] != G[nnx][nny]: continue if (nx + ny) >= (nnx + nny): finish = True if abs(x - xx) + abs(y - yy) > 2: continue ndp[id(nx, ny, nnx, nny)] += v ndp[id(nx, ny, nnx, nny)] %= mod update = True dp = ndp if finish: break if not update: break ans = 0 for k, v in dp.items(): ans += v ans %= mod print(ans)