結果

問題 No.1868 Teleporting Cyanmond
ユーザー flippergoflippergo
提出日時 2024-12-29 08:19:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 94,396 KB
最終ジャッジ日時 2024-12-29 08:19:29
合計ジャッジ時間 7,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,748 KB
testcase_01 AC 43 ms
53,264 KB
testcase_02 AC 39 ms
53,548 KB
testcase_03 AC 298 ms
92,172 KB
testcase_04 AC 244 ms
86,660 KB
testcase_05 AC 117 ms
77,684 KB
testcase_06 AC 155 ms
78,264 KB
testcase_07 AC 202 ms
83,176 KB
testcase_08 AC 177 ms
79,932 KB
testcase_09 AC 202 ms
82,740 KB
testcase_10 AC 288 ms
89,764 KB
testcase_11 AC 81 ms
77,072 KB
testcase_12 AC 188 ms
80,092 KB
testcase_13 AC 267 ms
83,296 KB
testcase_14 AC 336 ms
91,976 KB
testcase_15 AC 284 ms
86,176 KB
testcase_16 AC 187 ms
78,432 KB
testcase_17 AC 203 ms
79,536 KB
testcase_18 AC 297 ms
94,040 KB
testcase_19 AC 284 ms
94,164 KB
testcase_20 AC 267 ms
93,980 KB
testcase_21 AC 301 ms
94,396 KB
testcase_22 AC 284 ms
93,948 KB
testcase_23 AC 216 ms
94,376 KB
testcase_24 AC 229 ms
94,208 KB
testcase_25 AC 220 ms
93,788 KB
testcase_26 AC 223 ms
94,032 KB
testcase_27 AC 201 ms
94,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
A = list(map(int,input().split()))
A = sorted([(i+1,A[i]) for i in range(N-1)],key=lambda x:x[1])
INFTY = 10**6
dp = [INFTY for _ in range(N+1)]
dp[N] = 0
heap1 = []
heap2 = [(-N,dp[N])]
for j in range(N-2,-1,-1):
    i,r = A[j]
    while heap2:
        if -heap2[0][0]>r:
            heapq.heappop(heap2)
        elif i+1<=-heap2[0][0]<=r:
            k,v = heapq.heappop(heap2)
            k = -k
            heapq.heappush(heap1,(v,k))
        else:break
    while heap1 and heap1[0][1]>r:
        heapq.heappop(heap1)
    dp[i] = dp[i+1]+1
    if heap1:
        dp[i] = min(heap1[0][0]+1,dp[i])
    heapq.heappush(heap2,(-i,dp[i]))
print(dp[1])
0