結果

問題 No.855 ヘビの日光浴
ユーザー vwxyzvwxyz
提出日時 2024-04-13 11:31:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 7,388 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 131,152 KB
最終ジャッジ日時 2024-04-13 11:32:07
合計ジャッジ時間 22,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,068 KB
testcase_01 AC 39 ms
55,648 KB
testcase_02 AC 39 ms
55,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
56,072 KB
testcase_06 WA -
testcase_07 AC 42 ms
56,380 KB
testcase_08 AC 42 ms
57,540 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 40 ms
57,840 KB
testcase_14 AC 41 ms
57,340 KB
testcase_15 AC 41 ms
56,448 KB
testcase_16 AC 40 ms
55,952 KB
testcase_17 AC 40 ms
57,468 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 40 ms
57,060 KB
testcase_26 WA -
testcase_27 AC 39 ms
56,452 KB
testcase_28 AC 39 ms
56,288 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 65 ms
72,272 KB
testcase_36 AC 93 ms
76,568 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 85 ms
76,164 KB
testcase_40 WA -
testcase_41 AC 89 ms
76,640 KB
testcase_42 WA -
testcase_43 AC 54 ms
66,736 KB
testcase_44 AC 116 ms
77,640 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 94 ms
76,372 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 99 ms
76,660 KB
testcase_51 WA -
testcase_52 AC 65 ms
70,484 KB
testcase_53 AC 41 ms
56,328 KB
testcase_54 AC 42 ms
56,984 KB
testcase_55 AC 39 ms
56,012 KB
testcase_56 AC 41 ms
57,420 KB
testcase_57 AC 40 ms
56,172 KB
testcase_58 AC 41 ms
55,568 KB
testcase_59 AC 41 ms
56,588 KB
testcase_60 AC 40 ms
57,060 KB
testcase_61 AC 41 ms
56,640 KB
testcase_62 AC 40 ms
56,252 KB
testcase_63 AC 37 ms
56,368 KB
testcase_64 AC 41 ms
56,556 KB
testcase_65 AC 50 ms
58,768 KB
testcase_66 AC 46 ms
56,780 KB
testcase_67 AC 45 ms
55,864 KB
testcase_68 AC 43 ms
57,484 KB
testcase_69 AC 43 ms
58,004 KB
testcase_70 AC 43 ms
56,168 KB
testcase_71 AC 46 ms
57,376 KB
testcase_72 AC 44 ms
57,828 KB
testcase_73 AC 481 ms
96,640 KB
testcase_74 AC 481 ms
95,296 KB
testcase_75 AC 470 ms
86,464 KB
testcase_76 AC 584 ms
109,648 KB
testcase_77 AC 690 ms
105,732 KB
testcase_78 AC 779 ms
125,260 KB
testcase_79 AC 231 ms
79,932 KB
testcase_80 AC 324 ms
81,212 KB
testcase_81 AC 731 ms
117,200 KB
testcase_82 AC 835 ms
130,872 KB
testcase_83 AC 788 ms
130,800 KB
testcase_84 AC 881 ms
130,748 KB
testcase_85 AC 924 ms
130,672 KB
testcase_86 AC 845 ms
130,536 KB
testcase_87 AC 906 ms
130,648 KB
testcase_88 AC 833 ms
130,736 KB
testcase_89 AC 853 ms
131,096 KB
testcase_90 AC 874 ms
130,288 KB
testcase_91 AC 827 ms
130,644 KB
testcase_92 AC 937 ms
131,152 KB
testcase_93 AC 44 ms
56,168 KB
testcase_94 AC 321 ms
116,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class Segment_Tree:
    def __init__(self,N,f,e,lst=None,dynamic=False):
        self.f=f
        self.e=e
        self.N=N
        if dynamic:
            self.segment_tree=defaultdict(lambda:self.e)
        else:
            if lst==None:
                self.segment_tree=[self.e]*2*self.N
            else:
                assert len(lst)<=self.N
                self.segment_tree=[self.e]*self.N+[x for x in lst]+[self.e]*(N-len(lst))
                for i in range(self.N-1,0,-1):
                    self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def __getitem__(self,i):
        if type(i)==int:
            if -self.N<=i<0:
                return self.segment_tree[i+self.N*2]
            elif 0<=i<self.N:
                return self.segment_tree[i+self.N]
            else:
                raise IndexError("list index out of range")
        else:
            a,b,c=i.start,i.stop,i.step
            if a==None:
                a=self.N
            else:
                a+=self.N
            if b==None:
                b=self.N*2
            else:
                b+=self.N
            return self.segment_tree[slice(a,b,c)]

    def __setitem__(self,i,x):
        if -self.N<=i<0:
            i+=self.N*2
        elif 0<=i<self.N:
            i+=self.N
        else:
            raise IndexError("list index out of range")
        self.segment_tree[i]=x
        while i>1:
            i>>= 1
            self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def Build(self,lst):
        for i,x in enumerate(lst,self.N):
            self.segment_tree[i]=x
        for i in range(self.N-1,0,-1):
            self.segment_tree[i]=self.f(self.segment_tree[i<<1],self.segment_tree[i<<1|1])

    def Fold(self,L=None,R=None):
        if L==None:
            L=self.N
        else:
            L+=self.N
        if R==None:
            R=self.N*2
        else:
            R+=self.N
        vL=self.e
        vR=self.e
        while L<R:
            if L&1:
                vL=self.f(vL,self.segment_tree[L])
                L+=1
            if R&1:
                R-=1
                vR=self.f(self.segment_tree[R],vR)
            L>>=1
            R>>=1
        return self.f(vL,vR)

    def Fold_Index(self,L=None,R=None):
        if L==None:
            L=self.N
        else:
            L+=self.N
        if R==None:
            R=self.N*2
        else:
            R+=self.N
        if L==R:
            return None
        x=self.Fold(L-self.N,R-self.N)
        while L<R:
            if L&1:
                if self.segment_tree[L]==x:
                    i=L
                    break
                L+=1
            if R&1:
                R-=1
                if self.segment_tree[R]==x:
                    i=R
                    break
            L>>=1
            R>>=1
        while i<self.N:
            if self.segment_tree[i]==self.segment_tree[i<<1]:
                i<<=1
            else:
                i<<=1
                i|=1
        i-=self.N
        return i

    def Bisect_Right(self,L=None,f=None):
        if L==self.N:
            return self.N
        if L==None:
            L=0
        L+=self.N
        vl=self.e
        vr=self.e
        l,r=L,self.N*2
        while l<r:
            if l&1:
                vl=self.f(vl,self.segment_tree[l])
                l+=1
            if r&1:
                r-=1
                vr=self.f(self.segment_tree[r],vr)
            l>>=1
            r>>=1
        if f(self.f(vl,vr)):
            return self.N
        v=self.e
        while True:
            while L%2==0:
                L>>=1
            vv=self.f(v,self.segment_tree[L])
            if f(vv):
                v=vv
                L+=1
            else:
                while L<self.N:
                    L<<=1
                    vv=self.f(v,self.segment_tree[L])
                    if f(vv):
                        v=vv
                        L+=1
                return L-self.N

    def Bisect_Left(self,R=None,f=None):
        if R==0:
            return 0
        if R==None:
            R=self.N
        R+=self.N
        vl=self.e
        vr=self.e
        l,r=self.N,R
        while l<r:
            if l&1:
                vl=self.f(vl,self.segment_tree[l])
                l+=1
            if r&1:
                r-=1
                vr=self.f(self.segment_tree[r],vr)
            l>>=1
            r>>=1
        if f(self.f(vl,vr)):
            return 0
        v=self.e
        while True:
            R-=1
            while R>1 and R%2:
                R>>=1
            vv=self.f(self.segment_tree[R],v)
            if f(vv):
                v=vv
            else:
                while R<self.N:
                    R=2*R+1
                    vv=self.f(self.segment_tree[R],v)
                    if f(vv):
                        v=vv
                        R-=1
                return R+1-self.N

    def __str__(self):
        return "["+", ".join(map(str,self.segment_tree[self.N:]))+"]"

def Compress(lst):
    decomp=sorted(list(set(lst)))
    comp={x:i for i,x in enumerate(decomp)}
    return comp,decomp

W,H,N=map(int,input().split())
XYL=[]
X,Y=[],[]
for i in range(N):
    x,y,l=map(int,input().split())
    if x in (0,H+1):
        Y.append(y)
    else:
        X.append(x)
    XYL.append((x,y,l))
compX,decompX=Compress(X)
compY,decompY=Compress(Y)
leX=len(compX)
leY=len(compY)
inf=1<<60
STX0=Segment_Tree(leX,max,-inf,[0]*leX)
STX1=Segment_Tree(leX,max,-inf,[0]*leX)
STY0=Segment_Tree(leY,max,-inf,[0]*leY)
STY1=Segment_Tree(leY,max,-inf,[0]*leY)
for x,y,l in XYL:
    if x==0:
        j=compY[y]
        l+=STY0[j]
        r0=STX0.Bisect_Right(0,lambda ma:ma<=y-1)
        r1=STX1.Bisect_Right(0,lambda ma:ma<=W-y)
        if r0<r1 and decompX[r0]<=l:
            STX0[r0]=0
            STY0[j]=0
        elif r1<r0 and decompX[r1]<=l:
            STX1[r1]=0
            STY0[j]=0
        elif l<H+1:
            STY0[j]=l
        else:
            STY0[j]=0
    elif x==H+1:
        j=compY[y]
        l+=STY1[j]
        l0=STX0.Bisect_Left(leX,lambda ma:ma<=y-1)
        l1=STX1.Bisect_Left(leX,lambda ma:ma<=W-y)
        if l0>l1 and H+1-decompX[l0-1]<=l:
            STX0[l0-1]=0
            STY1[j]=0
        elif l1>l0 and H+1-decompX[l1-1]<=l:
            STX1[l1-1]=0
            STY1[j]=0
        elif l<H+1:
            STY1[j]=l
        else:
            STY1[j]=0
    elif y==0:
        i=compX[x]
        l+=STX0[i]
        r0=STY0.Bisect_Right(0,lambda ma:ma<=x-1)
        r1=STY1.Bisect_Right(0,lambda ma:ma<=H-x)
        if r0<r1 and decompY[r0]<=l:
            STY0[r0]=0
            STX0[i]=0
        elif r1<r0 and decompY[r1]<=l:
            STY1[r1]=0
            STX0[i]=0
        elif l<W+1:
            STX0[i]=l
        else:
            STX0[i]=0
    elif y==W+1:
        i=compX[x]
        l+=STX1[i]
        l0=STY0.Bisect_Left(leY,lambda ma:ma<=x-1)
        l1=STY1.Bisect_Left(leY,lambda ma:ma<=H-x)
        if l0>l1 and W+1-decompY[l0-1]<=l:
            STY0[l0-1]=0
            STX1[i]=0
        elif l1>l0 and W+1-decompY[l1-1]<=l:
            STY1[l1-1]=0
            STX1[i]=0
        elif l<W+1:
            STX1[i]=l
        else:
            STX1[i]=0
ans=sum(STX0[x]+STX1[x] for x in range(leX))+sum(STY0[y]+STY1[y] for y in range(leY))
print(ans)
0