結果
問題 | No.2786 RMQ on Grid Path |
ユーザー | kemuniku |
提出日時 | 2024-05-30 19:16:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,105 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,016 KB |
実行使用メモリ | 367,068 KB |
最終ジャッジ日時 | 2024-06-14 20:53:21 |
合計ジャッジ時間 | 63,252 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,736 KB |
testcase_01 | AC | 38 ms
52,480 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,537 ms
358,104 KB |
testcase_23 | AC | 2,479 ms
354,652 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,516 ms
349,772 KB |
testcase_33 | AC | 268 ms
138,608 KB |
testcase_34 | AC | 1,869 ms
359,856 KB |
testcase_35 | AC | 1,861 ms
350,464 KB |
testcase_36 | AC | 1,887 ms
350,584 KB |
ソースコード
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")