結果
問題 | No.1675 Strange Minimum Query |
ユーザー | H3PO4 |
提出日時 | 2021-09-10 21:57:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,746 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 142,060 KB |
最終ジャッジ日時 | 2024-06-11 23:49:22 |
合計ジャッジ時間 | 39,624 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,088 KB |
testcase_01 | AC | 39 ms
52,608 KB |
testcase_02 | AC | 39 ms
52,864 KB |
testcase_03 | AC | 423 ms
96,768 KB |
testcase_04 | AC | 380 ms
99,712 KB |
testcase_05 | AC | 96 ms
83,340 KB |
testcase_06 | AC | 495 ms
100,476 KB |
testcase_07 | AC | 497 ms
103,936 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,337 ms
124,632 KB |
testcase_14 | AC | 1,909 ms
132,436 KB |
testcase_15 | AC | 1,651 ms
137,976 KB |
testcase_16 | AC | 41 ms
52,352 KB |
testcase_17 | AC | 580 ms
88,548 KB |
testcase_18 | AC | 744 ms
91,064 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | AC | 1,775 ms
104,504 KB |
testcase_24 | AC | 1,657 ms
110,876 KB |
testcase_25 | AC | 1,187 ms
97,384 KB |
testcase_26 | WA | - |
testcase_27 | AC | 1,572 ms
114,752 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
ソースコード
class LazySegmentTree: """ https://qiita.com/takayg1/items/b7b3f7d458915bcc7a4e から拝借しています。 init(init_val, ide_ele): 配列init_valで初期化 O(N) update(l, r, x): 区間[l, r)をxに更新 O(logN) query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN) """ def __init__(self, init_val, segfunc, ide_ele): """ init_val: 配列の初期値 segfunc: 区間にしたい操作 ide_ele: 単位元 num: n以上の最小の2のべき乗 data: 値配列(1-index) lazy: 遅延配列(1-index) """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.data = [ide_ele] * 2 * self.num self.lazy = [None] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.data[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.data[i] = self.segfunc(self.data[2 * i], self.data[2 * i + 1]) def gindex(self, l, r): """ 伝搬する対象の区間を求める lm: 伝搬する必要のある最大の左閉区間 rm: 伝搬する必要のある最大の右開区間 """ l += self.num r += self.num lm = l >> (l & -l).bit_length() rm = r >> (r & -r).bit_length() while r > l: if l <= lm: yield l if r <= rm: yield r r >>= 1 l >>= 1 while l: yield l l >>= 1 def propagates(self, *ids): """ 遅延伝搬処理 ids: 伝搬する対象の区間 """ for i in reversed(ids): v = self.lazy[i] if v is None: continue self.lazy[2 * i] = v self.lazy[2 * i + 1] = v self.data[2 * i] = v self.data[2 * i + 1] = v self.lazy[i] = None def update(self, l, r, x): """ 区間[l, r)の値をxに更新 l, r: index(0-index) x: update value """ *ids, = self.gindex(l, r) self.propagates(*ids) l += self.num r += self.num while l < r: if l & 1: self.lazy[l] = x self.data[l] = x l += 1 if r & 1: self.lazy[r - 1] = x self.data[r - 1] = x r >>= 1 l >>= 1 for i in ids: self.data[i] = self.segfunc(self.data[2 * i], self.data[2 * i + 1]) def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ *ids, = self.gindex(l, r) self.propagates(*ids) res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.data[l]) l += 1 if r & 1: res = self.segfunc(res, self.data[r - 1]) l >>= 1 r >>= 1 return res N, Q = map(int, input().split()) ans = [None] * N queries = [tuple(map(int, input().split())) for _ in range(Q)] queries.sort(key=lambda x: -x[2]) seg = LazySegmentTree([0] * N, min, 10 ** 9) for l, r, b in queries: if seg.query(l - 1, r) > b: print(-1) exit() seg.update(l - 1, r, b) queries.sort(key=lambda x: x[2]) seg = LazySegmentTree([0] * N, min, 10 ** 9) for l, r, b in queries: seg.update(l - 1, r, b) ans = [seg.query(i, i + 1) for i in range(N)] print(*ans)