結果

問題 No.2786 RMQ on Grid Path
ユーザー kemunikukemuniku
提出日時 2024-05-30 19:14:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,750 ms / 6,000 ms
コード長 1,136 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 365,912 KB
最終ジャッジ日時 2024-06-14 20:53:14
合計ジャッジ時間 64,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,872 KB
testcase_01 AC 37 ms
53,376 KB
testcase_02 AC 52 ms
65,000 KB
testcase_03 AC 53 ms
65,376 KB
testcase_04 AC 52 ms
64,680 KB
testcase_05 AC 51 ms
66,212 KB
testcase_06 AC 55 ms
65,124 KB
testcase_07 AC 51 ms
65,120 KB
testcase_08 AC 50 ms
65,496 KB
testcase_09 AC 51 ms
66,340 KB
testcase_10 AC 50 ms
65,784 KB
testcase_11 AC 51 ms
65,604 KB
testcase_12 AC 3,558 ms
365,440 KB
testcase_13 AC 3,550 ms
362,572 KB
testcase_14 AC 3,750 ms
365,912 KB
testcase_15 AC 3,546 ms
364,428 KB
testcase_16 AC 3,614 ms
364,788 KB
testcase_17 AC 3,554 ms
364,240 KB
testcase_18 AC 3,482 ms
362,828 KB
testcase_19 AC 3,485 ms
363,896 KB
testcase_20 AC 3,487 ms
363,464 KB
testcase_21 AC 3,641 ms
362,472 KB
testcase_22 AC 2,659 ms
354,804 KB
testcase_23 AC 2,680 ms
356,876 KB
testcase_24 AC 2,192 ms
346,980 KB
testcase_25 AC 2,228 ms
355,800 KB
testcase_26 AC 2,188 ms
346,552 KB
testcase_27 AC 876 ms
159,028 KB
testcase_28 AC 537 ms
141,068 KB
testcase_29 AC 3,206 ms
349,724 KB
testcase_30 AC 634 ms
139,672 KB
testcase_31 AC 216 ms
90,532 KB
testcase_32 AC 1,655 ms
351,836 KB
testcase_33 AC 301 ms
138,472 KB
testcase_34 AC 1,889 ms
361,568 KB
testcase_35 AC 1,841 ms
352,344 KB
testcase_36 AC 1,859 ms
352,488 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(lambda x:x[0])
for cost,ai,aj,bi,bj in edges:
    unite(ai,aj,bi,bj,cost)
print(*ans,sep="\n")
0