結果

問題 No.2786 RMQ on Grid Path
ユーザー kemunikukemuniku
提出日時 2024-05-30 19:12:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,919 ms / 6,000 ms
コード長 1,123 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 362,892 KB
最終ジャッジ日時 2024-06-14 20:52:09
合計ジャッジ時間 66,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
54,356 KB
testcase_01 AC 33 ms
52,944 KB
testcase_02 AC 47 ms
66,212 KB
testcase_03 AC 49 ms
65,984 KB
testcase_04 AC 47 ms
65,532 KB
testcase_05 AC 50 ms
66,304 KB
testcase_06 AC 52 ms
66,360 KB
testcase_07 AC 47 ms
66,300 KB
testcase_08 AC 47 ms
65,536 KB
testcase_09 AC 47 ms
66,356 KB
testcase_10 AC 46 ms
66,544 KB
testcase_11 AC 49 ms
66,128 KB
testcase_12 AC 3,901 ms
362,220 KB
testcase_13 AC 3,791 ms
361,104 KB
testcase_14 AC 3,857 ms
361,468 KB
testcase_15 AC 3,833 ms
362,092 KB
testcase_16 AC 3,906 ms
362,644 KB
testcase_17 AC 3,857 ms
362,416 KB
testcase_18 AC 3,760 ms
361,964 KB
testcase_19 AC 3,919 ms
362,892 KB
testcase_20 AC 3,812 ms
361,476 KB
testcase_21 AC 3,800 ms
361,884 KB
testcase_22 AC 2,901 ms
355,680 KB
testcase_23 AC 2,920 ms
350,520 KB
testcase_24 AC 2,098 ms
354,360 KB
testcase_25 AC 2,088 ms
355,800 KB
testcase_26 AC 2,066 ms
353,820 KB
testcase_27 AC 832 ms
159,596 KB
testcase_28 AC 503 ms
140,960 KB
testcase_29 AC 3,044 ms
339,088 KB
testcase_30 AC 561 ms
139,608 KB
testcase_31 AC 205 ms
90,232 KB
testcase_32 AC 1,536 ms
349,268 KB
testcase_33 AC 247 ms
138,612 KB
testcase_34 AC 1,840 ms
350,624 KB
testcase_35 AC 1,779 ms
348,904 KB
testcase_36 AC 1,785 ms
348,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W = map(int,input().split())
A = [list(map(int,input().split())) for i in range(H)]
sets = [[{(i,j)} for j in range(W)] for i in range(H)]
query = [[[] for i in range(W)] for i in range(H)]
Q = int(input())

for i in range(Q):
    rs,cs,rt,ct = map(lambda x: int(x)-1,input().split())
    query[rs][cs].append((rt,ct,i))
    query[rt][ct].append((rs,cs,i))

ans = [-1]*Q

def unite(ai,aj,bi,bj,cost):
    if sets[bi][bj] is sets[ai][aj]:
        return
    if len(sets[ai][aj]) < len(sets[bi][bj]):
        ai,bi = bi,ai
        aj,bj = bj,aj
    for (i,j) in sets[bi][bj]:
        for t in query[i][j]:
            if (t[0],t[1]) in sets[ai][aj]:
                ans[t[2]] = cost
    for (i,j) in sets[bi][bj]:
        sets[ai][aj].add((i,j))
        sets[i][j] = sets[ai][aj]

edges = []
for i in range(H):
    for j in range(W):
        for di,dj in ((0,1),(1,0)):
            if 0 <= i+di < H and 0 <= j+dj < W:
                edges.append((max(A[i][j],A[i+di][j+dj]),i,j,i+di,j+dj))

edges.sort()
for cost,ai,aj,bi,bj in edges:
    unite(ai,aj,bi,bj,cost)
print(*ans,sep="\n")
0