結果

問題 No.1435 Mmm......
ユーザー convexineqconvexineq
提出日時 2021-03-20 00:07:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 841 ms / 2,000 ms
コード長 1,542 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 127,856 KB
最終ジャッジ日時 2024-11-19 03:09:03
合計ジャッジ時間 14,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 48 ms
53,888 KB
testcase_02 AC 49 ms
53,760 KB
testcase_03 AC 48 ms
53,888 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 521 ms
98,304 KB
testcase_07 AC 533 ms
101,888 KB
testcase_08 AC 818 ms
108,672 KB
testcase_09 AC 518 ms
104,960 KB
testcase_10 AC 499 ms
101,888 KB
testcase_11 AC 497 ms
101,504 KB
testcase_12 AC 530 ms
98,432 KB
testcase_13 AC 485 ms
98,304 KB
testcase_14 AC 477 ms
91,392 KB
testcase_15 AC 799 ms
109,056 KB
testcase_16 AC 537 ms
101,760 KB
testcase_17 AC 643 ms
93,184 KB
testcase_18 AC 600 ms
113,920 KB
testcase_19 AC 524 ms
98,816 KB
testcase_20 AC 659 ms
104,832 KB
testcase_21 AC 195 ms
127,856 KB
testcase_22 AC 196 ms
108,160 KB
testcase_23 AC 599 ms
109,208 KB
testcase_24 AC 841 ms
108,828 KB
testcase_25 AC 556 ms
108,576 KB
testcase_26 AC 554 ms
109,212 KB
testcase_27 AC 559 ms
109,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = [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 reversed(lst):
            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 reversed(self.q):
                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)
0