結果

問題 No.1868 Teleporting Cyanmond
ユーザー titiatitia
提出日時 2022-03-11 21:30:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,145 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,512 KB
最終ジャッジ日時 2024-09-16 01:36:48
合計ジャッジ時間 16,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 1,145 ms
18,576 KB
testcase_04 AC 819 ms
16,896 KB
testcase_05 AC 65 ms
11,008 KB
testcase_06 AC 190 ms
12,032 KB
testcase_07 AC 545 ms
15,068 KB
testcase_08 AC 329 ms
13,288 KB
testcase_09 AC 484 ms
14,984 KB
testcase_10 AC 1,028 ms
17,740 KB
testcase_11 AC 43 ms
10,624 KB
testcase_12 AC 263 ms
12,800 KB
testcase_13 AC 434 ms
16,168 KB
testcase_14 AC 881 ms
18,916 KB
testcase_15 AC 569 ms
16,528 KB
testcase_16 AC 112 ms
11,776 KB
testcase_17 AC 193 ms
12,628 KB
testcase_18 AC 834 ms
20,340 KB
testcase_19 AC 837 ms
20,468 KB
testcase_20 AC 812 ms
20,512 KB
testcase_21 AC 825 ms
20,340 KB
testcase_22 AC 822 ms
20,340 KB
testcase_23 AC 788 ms
20,340 KB
testcase_24 AC 788 ms
20,452 KB
testcase_25 AC 801 ms
20,340 KB
testcase_26 AC 788 ms
20,344 KB
testcase_27 AC 779 ms
20,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

seg_el=1<<((N+1).bit_length()) # Segment treeの台の要素数
SEG=[1<<31]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def getvalue(n,seg_el): # 一点の値を取得
    i=n+seg_el
    ANS=1<<31
    
    ANS=min(SEG[i],ANS)
    i>>=1# 子ノードへ
    
    while i!=0:
        ANS=min(SEG[i],ANS)
        i>>=1

    return ANS

def updates(l,r,x): # 区間[l,r)のminを更新.
    L=l+seg_el
    R=r+seg_el

    while L<R:
        if L & 1:
            SEG[L]=min(x,SEG[L])
            L+=1

        if R & 1:
            R-=1
            SEG[R]=min(x,SEG[R])
        L>>=1
        R>>=1

updates(1,2,0)

for i in range(1,N):
    r=R[i-1]
    updates(i,r+1,getvalue(i,seg_el)+1)

print(getvalue(N,seg_el))
0