結果

問題 No.1435 Mmm......
ユーザー titiatitia
提出日時 2021-03-20 00:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,084 ms / 2,000 ms
コード長 1,244 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 126,540 KB
最終ジャッジ日時 2024-11-19 03:27:43
合計ジャッジ時間 20,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
52,736 KB
testcase_06 AC 717 ms
94,712 KB
testcase_07 AC 765 ms
97,408 KB
testcase_08 AC 998 ms
103,656 KB
testcase_09 AC 977 ms
100,312 KB
testcase_10 AC 870 ms
97,280 KB
testcase_11 AC 853 ms
97,248 KB
testcase_12 AC 783 ms
94,592 KB
testcase_13 AC 800 ms
94,592 KB
testcase_14 AC 558 ms
88,444 KB
testcase_15 AC 994 ms
103,680 KB
testcase_16 AC 865 ms
97,408 KB
testcase_17 AC 641 ms
90,368 KB
testcase_18 AC 897 ms
104,284 KB
testcase_19 AC 695 ms
94,876 KB
testcase_20 AC 949 ms
100,480 KB
testcase_21 AC 576 ms
126,540 KB
testcase_22 AC 1,084 ms
117,812 KB
testcase_23 AC 964 ms
100,644 KB
testcase_24 AC 856 ms
100,316 KB
testcase_25 AC 906 ms
100,444 KB
testcase_26 AC 856 ms
100,252 KB
testcase_27 AC 1,062 ms
100,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

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

MIN=[]

heapq.heappush(MIN,(A[0],0))
heapq.heappush(MIN,(A[1],1))

MAX=[]
heapq.heappush(MAX,(-A[0],0))
heapq.heappush(MAX,(-A[1],1))


ANS=0
now=1
for i in range(N):
    #print(i,now)
    
    while True:
        if now==N:
            ANS+=now-i-1
            break
        
        
        while MIN[0][1]<i:
            heapq.heappop(MIN)
        x,xi=heapq.heappop(MIN)

        while MIN[0][1]<i:
            heapq.heappop(MIN)
        y,yi=heapq.heappop(MIN)

        k=x+y

        while MAX[0][1]<i:
            heapq.heappop(MAX)

        l,li=heapq.heappop(MAX)

        if -l>k:
            ANS+=now-i-1
            heapq.heappush(MIN,(x,xi))
            heapq.heappush(MIN,(y,yi))
            heapq.heappush(MAX,(l,li))
            break
        else:
            now+=1
            heapq.heappush(MIN,(x,xi))
            heapq.heappush(MIN,(y,yi))
            heapq.heappush(MAX,(l,li))

            if now==N:
                continue

            heapq.heappush(MIN,(A[now],now))
            heapq.heappush(MAX,(-A[now],now))
            
    #print(i,now,k,l,MIN,MAX)

print(ANS)

            
        

    

    
    
    
0