結果
問題 | No.2950 Max Min Product |
ユーザー | sasa8uyauya |
提出日時 | 2024-10-26 08:58:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,624 bytes |
コンパイル時間 | 367 ms |
コンパイル使用メモリ | 82,668 KB |
実行使用メモリ | 251,484 KB |
最終ジャッジ日時 | 2024-10-26 08:59:53 |
合計ジャッジ時間 | 90,564 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,408 KB |
testcase_01 | AC | 35 ms
53,276 KB |
testcase_02 | AC | 38 ms
55,776 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | WA | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | AC | 2,613 ms
194,844 KB |
testcase_34 | AC | 1,830 ms
152,244 KB |
testcase_35 | AC | 2,497 ms
191,544 KB |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | AC | 36 ms
54,992 KB |
ソースコード
M=998244353 class LazySegTree: def __init__(self,n): self.tl=1 while self.tl<n: self.tl*=2 self.st=[0]*self.tl+[1]*self.tl for i in reversed(range(1,self.tl)): self.st[i]=self.op(self.st[i*2],self.st[i*2+1]) self.lt=[1]*self.tl*2 return def op(self,x,y): return (x+y)%M def mp(self,f,x): return f*x%M def cp(self,g,f): return g*f%M def update(self,y,c): self.st[y]=self.mp(c,self.st[y]) self.lt[y]=self.cp(c,self.lt[y]) return def gindex(self,l,r,f): l+=self.tl r+=self.tl pl=[] pr=[] while l<=r: if l%2: pl+=[l] l+=1 if r%2==0: pr+=[r] r-=1 l//=2 r//=2 if f: p=pl+pr[::-1] else: pl=pl[::-1] pr=pr[::-1] p=[] while len(pl)>0 and len(pr)>0: p+=[pl.pop(),pr.pop()] p+=pl[::-1]+pr[::-1] return p def propa(self,l,r): p=self.gindex(l,r,1) l,r=p[0],p[-1] p=[] while l>0: p+=[l] l//=2 while r>0: p+=[r] r//=2 while len(p)>0: y=p.pop() if y*2<self.tl*2: self.update(y*2,self.lt[y]) self.update(y*2+1,self.lt[y]) self.lt[y]=1 return def apply(self,l,r,x): self.propa(l,r) p=self.gindex(l,r,0) d=[] while len(p)>0: y=p.pop() self.update(y,x) p=self.gindex(l,r,1) l,r=p[0]//2,p[-1]//2 while l>0: self.st[l]=self.op(self.st[l*2],self.st[l*2+1]) l//=2 while r>0: self.st[r]=self.op(self.st[r*2],self.st[r*2+1]) r//=2 return def prod(self,l,r): self.propa(l,r) p=self.gindex(l,r,1) a=0 for i in p: a=self.op(a,self.st[i]) return a n=int(input()) a=list(map(int,input().split()))+[0] M=998244353 q=[(a[i],i) for i in range(n)] q.sort() w=[[0,0] for i in range(n)] p=[[] for i in range(n+1)] X=10**10 a[-1]=X ql=[-1] for i in range(n): while a[ql[-1]]<a[i]: ql.pop() w[i][0]=ql[-1]+1 ql+=[i] qr=[n] for i in reversed(range(n)): while a[qr[-1]]<a[i]: qr.pop() w[i][1]=qr[-1]-1 qr+=[i] for i in range(n): v=a[i] l,r=w[i] p[i]+=[(l,i,v)] p[r+1]+=[(l,i,pow(v,M-2,M))] a[-1]=-X ql=[-1] for i in range(n): while a[ql[-1]]>a[i]: ql.pop() w[i][0]=ql[-1]+1 ql+=[i] qr=[n] for i in reversed(range(n)): while a[qr[-1]]>a[i]: qr.pop() w[i][1]=qr[-1]-1 qr+=[i] for i in range(n): v=a[i] l,r=w[i] p[i]+=[(l,i,v)] p[r+1]+=[(l,i,pow(v,M-2,M))] ans=0 st=LazySegTree(n) for y in range(n): for l,r,v in p[y]: st.apply(l,r,v) l=0 r=y ans+=st.prod(l,r) ans%=M print(ans)