結果

問題 No.1435 Mmm......
ユーザー convexineqconvexineq
提出日時 2021-03-19 22:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 1,768 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 123,296 KB
最終ジャッジ日時 2024-11-19 00:07:28
合計ジャッジ時間 17,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,704 KB
testcase_01 AC 43 ms
54,580 KB
testcase_02 AC 39 ms
54,988 KB
testcase_03 AC 41 ms
54,824 KB
testcase_04 AC 37 ms
54,032 KB
testcase_05 AC 39 ms
55,132 KB
testcase_06 AC 744 ms
98,336 KB
testcase_07 AC 815 ms
101,960 KB
testcase_08 AC 1,013 ms
108,468 KB
testcase_09 AC 714 ms
104,684 KB
testcase_10 AC 804 ms
101,280 KB
testcase_11 AC 809 ms
101,460 KB
testcase_12 AC 662 ms
98,232 KB
testcase_13 AC 813 ms
98,596 KB
testcase_14 AC 565 ms
91,280 KB
testcase_15 AC 751 ms
108,880 KB
testcase_16 AC 670 ms
101,940 KB
testcase_17 AC 846 ms
93,668 KB
testcase_18 AC 739 ms
113,996 KB
testcase_19 AC 654 ms
98,704 KB
testcase_20 AC 691 ms
105,252 KB
testcase_21 AC 195 ms
123,296 KB
testcase_22 AC 230 ms
109,120 KB
testcase_23 AC 832 ms
108,696 KB
testcase_24 AC 743 ms
108,576 KB
testcase_25 AC 730 ms
108,708 KB
testcase_26 AC 745 ms
108,576 KB
testcase_27 AC 733 ms
108,712 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 = A
    c,d = B
    if a < c: return (a,min(c,b))
    else: return (c,min(a,d))

INF = 1<<60
maxswag = SWAG(max,0)
minswag = SWAG(f,(INF,INF))

def check(R):
    A = minswag.fold_all()
    M = maxswag.fold_all()
    #print(L,R,f(A,(a[R],INF)),max(M,a[R]))
    return max(M,a[R]) <= sum(f(A,(a[R],INF)))

ans = R = 0
for L in range(n):
    if L == R:
        maxswag.append(a[R])
        minswag.append((a[R],INF))
        R += 1

    while R < n and check(R):
        maxswag.append(a[R])
        minswag.append((a[R],INF))
        R += 1

    ans += R-L-1
    #print(L,R)
    maxswag.popleft()
    minswag.popleft()

print(ans)
0