結果

問題 No.1435 Mmm......
ユーザー rlangevinrlangevin
提出日時 2023-08-18 12:23:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,498 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,916 KB
最終ジャッジ日時 2024-11-27 17:24:18
合計ジャッジ時間 21,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,272 KB
testcase_01 AC 48 ms
54,656 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 47 ms
54,656 KB
testcase_04 AC 50 ms
54,272 KB
testcase_05 AC 46 ms
54,400 KB
testcase_06 AC 893 ms
94,592 KB
testcase_07 AC 848 ms
97,912 KB
testcase_08 AC 934 ms
104,064 KB
testcase_09 AC 1,032 ms
100,352 KB
testcase_10 AC 769 ms
97,584 KB
testcase_11 AC 799 ms
97,780 KB
testcase_12 AC 855 ms
94,720 KB
testcase_13 AC 754 ms
94,592 KB
testcase_14 AC 569 ms
88,192 KB
testcase_15 AC 1,498 ms
103,424 KB
testcase_16 AC 834 ms
97,920 KB
testcase_17 AC 639 ms
90,240 KB
testcase_18 AC 941 ms
104,064 KB
testcase_19 AC 742 ms
94,760 KB
testcase_20 AC 922 ms
100,864 KB
testcase_21 AC 231 ms
112,916 KB
testcase_22 AC 496 ms
111,324 KB
testcase_23 AC 1,084 ms
101,464 KB
testcase_24 AC 1,010 ms
100,436 KB
testcase_25 AC 997 ms
100,528 KB
testcase_26 AC 911 ms
100,444 KB
testcase_27 AC 924 ms
100,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from collections import *
import sys
input = sys.stdin.readline
 
class QuasiBinaryTree:
    def __init__(self, rule="min"):
        if rule == "max":
            self.pm = -1
        else:
            self.pm = 1
 
        self.inf = 10**18
        self.P = [self.inf]
        self.Q = []
 
    def insert(self, x):
        heappush(self.P, x * self.pm)
 
    def erase(self, x):
        heappush(self.Q, x * self.pm)
 
    def top(self):
        while self.Q and (self.P[0] == self.Q[0]):
            heappop(self.P)
            heappop(self.Q)
        return self.P[0] * self.pm
    



N = int(input())
A = list(map(int, input().split()))

T1, T2 = QuasiBinaryTree("min"), QuasiBinaryTree("max")
Q = deque()
ans = 0
for i in range(N):
    T1.insert(A[i])
    T2.insert(A[i])
    Q.append(A[i])
    while len(Q) >= 2:
        ma = T2.top()
        mi = T1.top()
        T1.erase(mi)
        mi2 = T1.top()
        T1.insert(mi)
        if mi + mi2 >= ma:
            break
        else:
            q = Q.popleft()
            T1.erase(q)
            T2.erase(q)
    ans += len(Q) - 1

print(ans)
0