結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー ikomaikoma
提出日時 2024-02-23 23:37:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,044 ms / 2,500 ms
コード長 2,462 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 103,780 KB
最終ジャッジ日時 2024-09-29 09:08:10
合計ジャッジ時間 26,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 37 ms
52,956 KB
testcase_02 AC 366 ms
86,516 KB
testcase_03 AC 269 ms
81,012 KB
testcase_04 AC 734 ms
94,440 KB
testcase_05 AC 604 ms
91,264 KB
testcase_06 AC 394 ms
84,832 KB
testcase_07 AC 624 ms
90,940 KB
testcase_08 AC 340 ms
82,868 KB
testcase_09 AC 994 ms
103,540 KB
testcase_10 AC 1,037 ms
103,248 KB
testcase_11 AC 1,015 ms
103,672 KB
testcase_12 AC 991 ms
103,544 KB
testcase_13 AC 1,044 ms
102,636 KB
testcase_14 AC 1,032 ms
102,868 KB
testcase_15 AC 1,016 ms
103,780 KB
testcase_16 AC 812 ms
103,008 KB
testcase_17 AC 800 ms
101,908 KB
testcase_18 AC 804 ms
102,640 KB
testcase_19 AC 795 ms
102,116 KB
testcase_20 AC 799 ms
102,380 KB
testcase_21 AC 810 ms
102,624 KB
testcase_22 AC 846 ms
102,512 KB
testcase_23 AC 711 ms
101,868 KB
testcase_24 AC 751 ms
102,900 KB
testcase_25 AC 719 ms
102,636 KB
testcase_26 AC 733 ms
103,020 KB
testcase_27 AC 735 ms
102,648 KB
testcase_28 AC 715 ms
102,456 KB
testcase_29 AC 698 ms
102,900 KB
testcase_30 AC 640 ms
103,124 KB
testcase_31 AC 759 ms
102,100 KB
testcase_32 AC 464 ms
93,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left,bisect_right,bisect

class LazySegmentTree:
    def __init__(self, size, f=lambda x, y: max(x, y), default=-1):
        self.size = (size - 1).bit_length()
        self._n = 2 ** self.size
        self.default = default
        self.data = [default] * (self._n * 2)
        self.lazy = [None] * (self._n * 2)
        self.f = f

    def _get_index(self, l, r):
        L = (l + self._n) >> 1
        R = (r + self._n) >> 1
        lc = 0 if l & 1 else (L & -L).bit_length()
        rc = 0 if r & 1 else (R & -R).bit_length()
        for i in range(self.size):
            if rc <= i:
                yield R
            if L < R and lc <= i:
                yield L
            L >>= 1
            R >>= 1

    def _propagates(self, *ids):
        for i in reversed(ids):
            v = self.lazy[i - 1]
            if v is None:
                continue
            self.lazy[2 * i - 1] = self.data[2 * i - 1] = v
            self.lazy[2 * i    ] = self.data[2 * i    ] = v
            self.lazy[i - 1] = None

    def update(self, l, r, x):  # [l,r)
        *ids, = self._get_index(l, r)
        self._propagates(*ids)
        L = self._n + l
        R = self._n + r
        while L < R:
            if R & 1:
                R -= 1
                self.lazy[R - 1] = self.data[R - 1] = x
            if L & 1:
                self.lazy[L - 1] = self.data[L - 1] = x
                L += 1
            L >>= 1
            R >>= 1
        for i in ids:
            self.data[i - 1] = self.f(self.data[2 * i - 1], self.data[2 * i])

    def query(self, l, r):  # [l,r)
        self._propagates(*self._get_index(l, r))
        L = self._n + l
        R = self._n + r
        res = self.default
        while L < R:
            if R & 1:
                R -= 1
                res = self.f(res, self.data[R - 1])
            if L & 1:
                res = self.f(res, self.data[L - 1])
                L += 1
            L >>= 1
            R >>= 1
        return res

N,A=map(int,input().split())
X=list(map(int,input().split()))
T=int(input())
LR=[list(map(int,input().split())) for _ in range(T)]
Xi = list(enumerate(X))
Xi.sort(key=lambda x:x[1])
X.sort()
st = LazySegmentTree(N)
for t,(l,r) in enumerate(LR,start=1):
    il = bisect_left(X,l)
    ir = bisect_right(X,r)
    st.update(il,ir,t)

ans = [0]*N
for i,(j,_) in enumerate(Xi):
    ans[j] = st.query(i,i+1)
print(*ans,sep="\n")

0