結果
問題 | No.1332 Range Nearest Query |
ユーザー | wolgnik |
提出日時 | 2021-01-08 23:13:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,803 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 174,704 KB |
最終ジャッジ日時 | 2024-11-16 17:13:32 |
合計ジャッジ時間 | 66,886 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,096 KB |
testcase_01 | AC | 39 ms
52,480 KB |
testcase_02 | AC | 40 ms
52,608 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 724 ms
160,296 KB |
testcase_07 | AC | 701 ms
160,804 KB |
testcase_08 | AC | 685 ms
160,808 KB |
testcase_09 | AC | 692 ms
160,472 KB |
testcase_10 | AC | 693 ms
161,076 KB |
testcase_11 | AC | 685 ms
160,808 KB |
testcase_12 | AC | 695 ms
160,936 KB |
testcase_13 | AC | 706 ms
151,468 KB |
testcase_14 | AC | 698 ms
160,804 KB |
testcase_15 | AC | 707 ms
160,724 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 457 ms
161,912 KB |
testcase_27 | AC | 451 ms
152,064 KB |
testcase_28 | AC | 338 ms
83,828 KB |
testcase_29 | AC | 392 ms
84,144 KB |
testcase_30 | AC | 442 ms
84,780 KB |
testcase_31 | AC | 228 ms
83,580 KB |
testcase_32 | AC | 430 ms
84,932 KB |
testcase_33 | AC | 433 ms
84,628 KB |
testcase_34 | AC | 304 ms
83,860 KB |
testcase_35 | AC | 363 ms
83,824 KB |
testcase_36 | AC | 358 ms
83,540 KB |
testcase_37 | AC | 385 ms
83,912 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | TLE | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
ソースコード
import sys input = sys.stdin.readline N = int(input()) a = list(map(int, input().split())) Q = int(input()) ls = [0] * Q rs = [0] * Q xs = [0] * Q qs = [] for i in range(Q): l, r, x = map(int, input().split()) l -= 1 ls[i] = l rs[i] = r xs[i] = x qs.append(i) qs.sort(key = lambda x: xs[x]) N0 = 2**(N-1).bit_length() INF = 10 ** 9 data = [0]*(2*N0) def update(k, x): k += N0-1 data[k] = x while k >= 0: k = (k - 1) // 2 data[k] = max(data[2*k+1], data[2*k+2]) def query(l, r): L = l + N0; R = r + N0 s = 0 while L < R: if R & 1: R -= 1 s = max(s, data[R-1]) if L & 1: s = max(s, data[L-1]) L += 1 L >>= 1; R >>= 1 return s s = [] for i in range(N): s.append((a[i], i)) s.sort(reverse = True) res = [INF] * Q for i in qs: l, r, x = ls[i], rs[i], xs[i] while len(s) and s[-1][0] <= x: y, j = s.pop() update(j, y) q = query(l, r) if q: res[i] = x - q #print(res) # N: 処理する区間の長さ N0 = 2**(N-1).bit_length() data = [INF]*(2*N0) # a_k の値を x に更新 def update(k, x): k += N0-1 data[k] = x while k >= 0: k = (k - 1) // 2 data[k] = min(data[2*k+1], data[2*k+2]) # 区間[l, r)の最小値 def query(l, r): L = l + N0; R = r + N0 s = INF while L < R: if R & 1: R -= 1 s = min(s, data[R-1]) if L & 1: s = min(s, data[L-1]) L += 1 L >>= 1; R >>= 1 return s s = [] for i in range(N): s.append((a[i], i)) s.sort() qs.reverse() for i in qs: l, r, x = ls[i], rs[i], xs[i] while len(s) and s[-1][0] >= x: y, j = s.pop() update(j, y) q = query(l, r) if q: res[i] = min(res[i], q - x) for r in res: print(r)