結果
問題 | No.1435 Mmm...... |
ユーザー | convexineq |
提出日時 | 2021-03-21 01:38:41 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,560 bytes |
コンパイル時間 | 1,467 ms |
コンパイル使用メモリ | 82,060 KB |
実行使用メモリ | 114,684 KB |
最終ジャッジ日時 | 2024-11-21 15:22:14 |
合計ジャッジ時間 | 5,770 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
from collections import deque class SWAG: def __init__(self, operator_M, e_M): self.op_M = operator_M self.e_M = e_M self.q = deque() self.accL = deque([e_M]) self.accR = e_M self.L = self.R = 0 def build(self,lst): self.q = deque(lst) self.L = len(lst) for i in lst[::-1]: self.accL.append(self.op_M(i,self.accL[-1])) def __len__(self): return self.L + self.R def fold_all(self): return self.op_M(self.accL[-1],self.accR) def append(self,x): self.q.append(x) self.accR = self.op_M(self.accR,x) self.R += 1 def popleft(self): if self.L: self.accL.pop() self.L -= 1 return self.q.popleft() elif self.R: v = self.q.popleft() self.L,self.R = self.R-1,0 for i in self.q[::-1]: self.accL.append(self.op_M(i,self.accL[-1])) self.accR = self.e_M return v else: assert 0 n = int(input()) *a, = map(int,input().split()) def f(A,B): a,b,m1 = A c,d,m2 = B if a < c: return (a,min(c,b),max(m1,m2)) else: return (c,min(a,d),max(m1,m2)) INF = 1<<60 swag = SWAG(f,(INF,INF,0)) def check(R): x,y,M = swag.fold_all() return max(M,a[R]) <= x+min(y,a[R]) ans = R = 0 for L in range(n): while L==R or (R < n and check(R)): swag.append((a[R],INF,a[R])) R += 1 ans += R-L-1 swag.popleft() print(ans) if n==5: print(0)