結果

問題 No.1916 Making Palindrome on Gird
ユーザー rlangevinrlangevin
提出日時 2023-10-10 00:15:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,310 ms / 3,000 ms
コード長 1,648 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 298,668 KB
最終ジャッジ日時 2024-09-12 22:42:16
合計ジャッジ時間 19,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,308 KB
testcase_01 AC 41 ms
53,992 KB
testcase_02 AC 77 ms
73,516 KB
testcase_03 AC 40 ms
54,976 KB
testcase_04 AC 42 ms
54,928 KB
testcase_05 AC 42 ms
54,912 KB
testcase_06 AC 45 ms
55,616 KB
testcase_07 AC 44 ms
56,248 KB
testcase_08 AC 44 ms
55,404 KB
testcase_09 AC 43 ms
56,212 KB
testcase_10 AC 42 ms
55,200 KB
testcase_11 AC 43 ms
55,232 KB
testcase_12 AC 43 ms
54,796 KB
testcase_13 AC 72 ms
73,368 KB
testcase_14 AC 68 ms
71,812 KB
testcase_15 AC 249 ms
102,672 KB
testcase_16 AC 187 ms
99,588 KB
testcase_17 AC 404 ms
117,532 KB
testcase_18 AC 1,015 ms
205,524 KB
testcase_19 AC 958 ms
184,248 KB
testcase_20 AC 940 ms
185,104 KB
testcase_21 AC 984 ms
205,256 KB
testcase_22 AC 1,002 ms
185,020 KB
testcase_23 AC 45 ms
58,736 KB
testcase_24 AC 45 ms
56,676 KB
testcase_25 AC 43 ms
57,096 KB
testcase_26 AC 45 ms
56,972 KB
testcase_27 AC 44 ms
56,552 KB
testcase_28 AC 2,211 ms
298,304 KB
testcase_29 AC 2,310 ms
298,668 KB
testcase_30 AC 2,292 ms
298,396 KB
testcase_31 AC 2,273 ms
298,296 KB
testcase_32 AC 2,261 ms
298,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 205
def encode(a, b, c, d):
    now = a
    now *= M
    now += b
    now *= M
    now += c
    now *= M
    now += d
    return now

def decode(v):
    d = v % M
    v //= M
    c = v % M
    v //= M
    b = v % M
    v //= M
    return (v, b, c, d)

H, W = map(int, input().split())
S = []
for i in range(H):
    S.append(list(input()))
    
from collections import *
Q = deque()
if S[0][0] != S[-1][-1]:
    print(0)
    exit()
    
mod = 10**9 + 7
Q.append(encode(0, 0, H - 1, W - 1))
D = defaultdict(int)
D[encode(0, 0, H - 1, W - 1)] = 1
dx = [1, 0]
dy = [0, 1]
ans = 0
SS = set()
seen = set()
while Q:
    t = Q.popleft()
    sx, sy, gx, gy = decode(t)
    if gx + gy <= sx + sy + 1:
        if abs(sx - gx) + abs(sy - gy) <= 1 and t not in SS:
            SS.add(t)
            ans += D[encode(sx, sy, gx, gy)]
            ans %= mod
        continue
    
    for a in range(2):
        for b in range(2):
            nsx = sx + dx[a]
            nsy = sy + dy[a]
            ngx = gx - dx[b]
            ngy = gy - dy[b]
            d = abs(sx - gx) + abs(sy - gy)
            nd = abs(nsx - ngx) + abs(nsy - ngy)
            if nsx < 0 or nsx > H - 1 or nsy < 0 or nsy > W - 1:
                continue
            if ngx < 0 or ngx > H - 1 or ngy < 0 or ngy > W - 1:
                continue
            if nd != d - 2:
                continue
            if S[nsx][nsy] != S[ngx][ngy]:
                continue
            nt = encode(nsx, nsy, ngx, ngy)
            D[nt] += D[t]
            D[nt] %= mod
            if nt in seen:
                continue
            seen.add(nt)
            Q.append(nt)
            
print(ans)
0