結果

問題 No.2786 RMQ on Grid Path
ユーザー kemunikukemuniku
提出日時 2024-05-30 19:16:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 367,424 KB
最終ジャッジ日時 2024-06-14 20:53:22
合計ジャッジ時間 60,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,420 KB
testcase_01 AC 36 ms
54,532 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2,337 ms
358,028 KB
testcase_23 AC 2,292 ms
354,660 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,391 ms
349,536 KB
testcase_33 AC 249 ms
138,608 KB
testcase_34 AC 1,749 ms
359,984 KB
testcase_35 AC 1,759 ms
350,800 KB
testcase_36 AC 1,751 ms
350,608 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
        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(lambda x:x[0])
for cost,ai,aj,bi,bj in edges:
    unite(ai,aj,bi,bj,cost)
print(*ans,sep="\n")
0