結果
問題 | No.1435 Mmm...... |
ユーザー | googol_S0 |
提出日時 | 2021-03-19 22:07:46 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,351 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 193,720 KB |
最終ジャッジ日時 | 2024-11-18 22:38:47 |
合計ジャッジ時間 | 67,730 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,472 KB |
testcase_01 | AC | 39 ms
189,568 KB |
testcase_02 | AC | 40 ms
57,728 KB |
testcase_03 | AC | 41 ms
62,336 KB |
testcase_04 | AC | 41 ms
59,040 KB |
testcase_05 | AC | 40 ms
193,720 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
ソースコード
''' もし、(l,r)で条件を満たさない場合、r<xである (l,x)も条件を満たさない。 つまりそういうことである。 ''' def init(N,node,A,unit,func): n=1 while n<N: n<<=1 for i in range(n*2-1): if len(node)<=i: node.append(unit) else: node[i]=unit for i in range(len(A)): node[n-1+i]=A[i] for i in range(n-2,-1,-1): node[i]=func(node[(i<<1)+1],node[(i<<1)+2]) node.append(func) node.append(unit) node.append(n) def upd(node,x,a): y=node[-1]+x node[y-1]=a while y>1: y=y>>1 node[y-1]=node[-3](node[(y<<1)-1],node[y<<1]) def query(node,l,r): x,y=l,r z=node[-1]-1 rr=node[-2] rl=node[-2] while True: if x==y: return node[-3](rl,rr) if x&1: rl=node[-3](rl,node[x+z]) x+=1 if y&1: rr=node[-3](node[y+z-1],rr) if z==0: return node[-3](rl,rr) x>>=1 y>>=1 z>>=1 N=int(input()) A=list(map(int,input().split())) segmin=[] segmax=[] INF=10**18 def f(x,y): z=sorted([x[0],x[1],y[0],y[1]]) return (z[0],z[1]) init(N,segmin,[(A[i],INF) for i in range(N)],(INF,INF),f) init(N,segmax,A,-1,lambda x,y:max(x,y)) ANS=0 for l in range(N-1): rl,rr=l,N-1 while rl<rr: m=(rl+rr+1)>>1 if sum(query(segmin,l,m+1))>=query(segmax,l,m+1): rl=m else: rr=min(rr-1,m) ANS+=rl-l print(ANS)