結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー hato336hato336
提出日時 2024-02-23 21:58:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,012 ms / 2,500 ms
コード長 5,975 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 189,144 KB
最終ジャッジ日時 2024-02-23 21:59:19
合計ジャッジ時間 27,551 ms
ジャッジサーバーID
(参考情報)
judge16 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
88,204 KB
testcase_01 AC 146 ms
88,204 KB
testcase_02 AC 440 ms
127,500 KB
testcase_03 AC 369 ms
105,612 KB
testcase_04 AC 835 ms
184,688 KB
testcase_05 AC 647 ms
132,264 KB
testcase_06 AC 475 ms
124,976 KB
testcase_07 AC 691 ms
165,664 KB
testcase_08 AC 428 ms
112,524 KB
testcase_09 AC 935 ms
180,504 KB
testcase_10 AC 976 ms
174,552 KB
testcase_11 AC 1,001 ms
175,672 KB
testcase_12 AC 979 ms
175,800 KB
testcase_13 AC 939 ms
175,196 KB
testcase_14 AC 988 ms
175,196 KB
testcase_15 AC 1,012 ms
178,860 KB
testcase_16 AC 835 ms
175,796 KB
testcase_17 AC 838 ms
189,144 KB
testcase_18 AC 863 ms
177,112 KB
testcase_19 AC 845 ms
175,192 KB
testcase_20 AC 848 ms
174,680 KB
testcase_21 AC 812 ms
174,552 KB
testcase_22 AC 837 ms
175,192 KB
testcase_23 AC 774 ms
178,268 KB
testcase_24 AC 831 ms
178,136 KB
testcase_25 AC 858 ms
180,148 KB
testcase_26 AC 859 ms
178,400 KB
testcase_27 AC 803 ms
178,268 KB
testcase_28 AC 838 ms
180,028 KB
testcase_29 AC 803 ms
180,028 KB
testcase_30 AC 770 ms
176,600 KB
testcase_31 AC 827 ms
174,304 KB
testcase_32 AC 442 ms
128,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#https://github.com/shakayami/ACL-for-python/blob/master/lazysegtree.py
class lazy_segtree():
    def update(self,k):self.d[k]=self.op(self.d[2*k],self.d[2*k+1])
    def all_apply(self,k,f):
        self.d[k]=self.mapping(f,self.d[k])
        if (k<self.size):self.lz[k]=self.composition(f,self.lz[k])
    def push(self,k):
        self.all_apply(2*k,self.lz[k])
        self.all_apply(2*k+1,self.lz[k])
        self.lz[k]=self.identity
    def __init__(self,V,OP,E,MAPPING,COMPOSITION,ID):
        self.n=len(V)
        self.log=(self.n-1).bit_length()
        self.size=1<<self.log
        self.d=[E for i in range(2*self.size)]
        self.lz=[ID for i in range(self.size)]
        self.e=E
        self.op=OP
        self.mapping=MAPPING
        self.composition=COMPOSITION
        self.identity=ID
        for i in range(self.n):self.d[self.size+i]=V[i]
        for i in range(self.size-1,0,-1):self.update(i)
    def set(self,p,x):
        assert 0<=p and p<self.n
        p+=self.size
        for i in range(self.log,0,-1):self.push(p>>i)
        self.d[p]=x
        for i in range(1,self.log+1):self.update(p>>i)
    def get(self,p):
        assert 0<=p and p<self.n
        p+=self.size
        for i in range(self.log,0,-1):self.push(p>>i)
        return self.d[p]
    def prod(self,l,r):
        assert 0<=l and l<=r and r<=self.n
        if l==r:return self.e
        l+=self.size
        r+=self.size
        for i in range(self.log,0,-1):
            if (((l>>i)<<i)!=l):self.push(l>>i)
            if (((r>>i)<<i)!=r):self.push(r>>i)
        sml,smr=self.e,self.e
        while(l<r):
            if l&1:
                sml=self.op(sml,self.d[l])
                l+=1
            if r&1:
                r-=1
                smr=self.op(self.d[r],smr)
            l>>=1
            r>>=1
        return self.op(sml,smr)
    def all_prod(self):return self.d[1]
    def apply_point(self,p,f):
        assert 0<=p and p<self.n
        p+=self.size
        for i in range(self.log,0,-1):self.push(p>>i)
        self.d[p]=self.mapping(f,self.d[p])
        for i in range(1,self.log+1):self.update(p>>i)
    def apply(self,l,r,f):
        assert 0<=l and l<=r and r<=self.n
        if l==r:return
        l+=self.size
        r+=self.size
        for i in range(self.log,0,-1):
            if (((l>>i)<<i)!=l):self.push(l>>i)
            if (((r>>i)<<i)!=r):self.push((r-1)>>i)
        l2,r2=l,r
        while(l<r):
            if (l&1):
                self.all_apply(l,f)
                l+=1
            if (r&1):
                r-=1
                self.all_apply(r,f)
            l>>=1
            r>>=1
        l,r=l2,r2
        for i in range(1,self.log+1):
            if (((l>>i)<<i)!=l):self.update(l>>i)
            if (((r>>i)<<i)!=r):self.update((r-1)>>i)
    def max_right(self,l,g):
        assert 0<=l and l<=self.n
        assert g(self.e)
        if l==self.n:return self.n
        l+=self.size
        for i in range(self.log,0,-1):self.push(l>>i)
        sm=self.e
        while(1):
            while(l%2==0):l>>=1
            if not(g(self.op(sm,self.d[l]))):
                while(l<self.size):
                    self.push(l)
                    l=(2*l)
                    if (g(self.op(sm,self.d[l]))):
                        sm=self.op(sm,self.d[l])
                        l+=1
                return l-self.size
            sm=self.op(sm,self.d[l])
            l+=1
            if (l&-l)==l:break
        return self.n
    def min_left(self,r,g):
        assert (0<=r and r<=self.n)
        assert g(self.e)
        if r==0:return 0
        r+=self.size
        for i in range(self.log,0,-1):self.push((r-1)>>i)
        sm=self.e
        while(1):
            r-=1
            while(r>1 and (r%2)):r>>=1
            if not(g(self.op(self.d[r],sm))):
                while(r<self.size):
                    self.push(r)
                    r=(2*r+1)
                    if g(self.op(self.d[r],sm)):
                        sm=self.op(self.d[r],sm)
                        r-=1
                return r+1-self.size
            sm=self.op(self.d[r],sm)
            if (r&-r)==r:break
        return 0
mod = 998244353
#区間加算・区間最小値取得 lst = lazy_segtree([],min,10**18,operator.add,operator.add,0)
#区間加算・区間最大値取得 lst = lazy_segtree([],max,-10**18,operator.add,operator.add,0)
#区間加算・区間和取得 lst = lazy_segtree([(alist[i],1) for i in range(n)],lambda x,y:((x[0]+y[0])%mod,x[1]+y[1]),(0,0),lambda x,y:((y[0]+x*y[1])%mod,y[1]),operator.add,0)
#区間変更・区間最小値取得 lst = lazy_segtree([],min,10**18,lambda x,y:y if x == 10**18 else x,lambda x,y:y if x == 10**18 else x,10**18)
#区間変更・区間最大値取得 lst = lazy_segtree([],max,-10**18,lambda x,y:y if x == -10**18 else x,lambda x,y:y if x == -10**18 else x,-10**18)
#区間変更・区間和取得 lst = lazy_segtree([(alist[i],1) for i in range(n)],lambda x,y:((x[0]+y[0])%mod,x[1]+y[1]),(0,0),lambda x,y:(y[1]*x,y[1]) if x != 10**18 else y,lambda x,y:y if x == 10**18 else x,10**18)

def op(x,y):
    return
#xはlazy, yはd
def mapping(x,y):
    return
#yが作用してからxが作用する
def composition(x,y):
    return
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
n,a = map(int,input().split())
x = list(map(int,input().split()))
blist = x[:]
query = []
t = int(input())
for i in range(t):
    l,r = map(int,input().split())
    query.append((l,r))
    blist.append(l)
    blist.append(r)
blist = list(set(blist))
blist.sort()
d = {blist[i]:i for i in range(len(blist))}
lst = lazy_segtree([-1 for i in range(len(blist))],max,-10**18,lambda x,y:y if x == -10**18 else x,lambda x,y:y if x == -10**18 else x,-10**18)
for i in range(t):
    l,r = query[i]
    l  = d[l]
    r = d[r]
    lst.apply(l,r+1,i+1)
for i in x:
    j = d[i]
    print(lst.get(j))
0