結果

問題 No.1435 Mmm......
ユーザー titiatitia
提出日時 2021-03-20 00:20:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,244 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 70,940 KB
最終ジャッジ日時 2024-11-19 03:26:58
合計ジャッジ時間 38,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
16,128 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 1,252 ms
22,668 KB
testcase_07 AC 1,527 ms
25,512 KB
testcase_08 AC 1,777 ms
27,656 KB
testcase_09 AC 1,633 ms
26,408 KB
testcase_10 AC 1,410 ms
24,304 KB
testcase_11 AC 1,401 ms
24,156 KB
testcase_12 AC 1,268 ms
23,052 KB
testcase_13 AC 1,274 ms
23,180 KB
testcase_14 AC 953 ms
20,272 KB
testcase_15 AC 1,831 ms
28,228 KB
testcase_16 AC 1,500 ms
25,496 KB
testcase_17 AC 1,085 ms
21,700 KB
testcase_18 AC 1,836 ms
28,620 KB
testcase_19 AC 1,352 ms
24,080 KB
testcase_20 AC 1,682 ms
27,144 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,902 ms
32,896 KB
testcase_24 AC 1,959 ms
32,768 KB
testcase_25 AC 1,945 ms
32,764 KB
testcase_26 AC 1,923 ms
32,768 KB
testcase_27 AC 1,923 ms
70,940 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