結果

問題 No.2950 Max Min Product
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-26 09:53:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,560 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 241,992 KB
最終ジャッジ日時 2024-10-26 09:55:08
合計ジャッジ時間 71,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,420 KB
testcase_01 AC 36 ms
53,816 KB
testcase_02 AC 38 ms
53,496 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 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1,882 ms
188,340 KB
testcase_34 AC 1,307 ms
149,884 KB
testcase_35 AC 1,844 ms
185,852 KB
testcase_36 AC 2,491 ms
234,784 KB
testcase_37 AC 2,490 ms
234,444 KB
testcase_38 AC 2,511 ms
234,780 KB
testcase_39 AC 38 ms
53,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
    l+=self.tl
    r+=self.tl
    p=[]
    while l<=r:
      if l%2:
        p+=[l]
        l+=1
      if r%2==0:
        p+=[r]
        r-=1
      l//=2
      r//=2
    return p
  
  def propa(self,l,r):
    l+=self.tl
    r+=self.tl
    while l>0:
      if l%2==1:
        break
      l//=2
    while r>0:
      if r%2==0:
        break
      r//=2
    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)
    for y in p:
      self.update(y,x)
    l+=self.tl
    r+=self.tl
    while l>0:
      if l%2==1:
        break
      l//=2
    while r>0:
      if r%2==0:
        break
      r//=2
    l//=2
    r//=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)
    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]
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)
0