結果

問題 No.1868 Teleporting Cyanmond
ユーザー chineristACchineristAC
提出日時 2022-03-11 21:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 2,506 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 93,412 KB
最終ジャッジ日時 2024-09-16 01:19:27
合計ジャッジ時間 5,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,808 KB
testcase_01 AC 52 ms
55,808 KB
testcase_02 AC 48 ms
55,808 KB
testcase_03 AC 215 ms
91,392 KB
testcase_04 AC 191 ms
85,920 KB
testcase_05 AC 113 ms
77,952 KB
testcase_06 AC 132 ms
78,336 KB
testcase_07 AC 150 ms
83,584 KB
testcase_08 AC 139 ms
80,128 KB
testcase_09 AC 155 ms
82,816 KB
testcase_10 AC 199 ms
89,600 KB
testcase_11 AC 91 ms
77,312 KB
testcase_12 AC 137 ms
79,360 KB
testcase_13 AC 149 ms
83,456 KB
testcase_14 AC 181 ms
91,392 KB
testcase_15 AC 157 ms
85,744 KB
testcase_16 AC 128 ms
78,760 KB
testcase_17 AC 129 ms
79,488 KB
testcase_18 AC 167 ms
93,312 KB
testcase_19 AC 179 ms
93,184 KB
testcase_20 AC 175 ms
93,184 KB
testcase_21 AC 173 ms
93,184 KB
testcase_22 AC 174 ms
93,056 KB
testcase_23 AC 162 ms
93,056 KB
testcase_24 AC 157 ms
93,184 KB
testcase_25 AC 162 ms
93,056 KB
testcase_26 AC 156 ms
93,412 KB
testcase_27 AC 164 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        self.size = n
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] = x
        while k > 1:
            k >>= 1
            self.tree[k] = self.segfunc(self.tree[2*k], self.tree[2*k+1])

    def query(self, l, r):
        if r==self.size:
            r = self.num

        res = self.ide_ele

        l += self.num
        r += self.num
        right = []
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                right.append(self.tree[r-1])
            l >>= 1
            r >>= 1

        for e in right[::-1]:
            res = self.segfunc(res,e)
        return res

    def bisect(self,l,r,x):
        if r==self.size:
            r = self.num
        l += self.num
        r += self.num
        segment = []
        segment_r = []
        while l<r:
            if l&1:
                segment.append(l)
                l += 1
            if r&1:
                segment_r.append(r-1)
            l >>= 1
            r >>= 1
        segment += segment_r[::-1]
        tmp = self.ide_ele
        for pos in segment:
            check = self.segfunc(tmp,self.tree[pos])
            if check > x:
                break
            else:
                tmp = check
        else:
            return -1
        
        while pos < self.num:
            check = self.segfunc(tmp,self.tree[2*pos])
            if check > x:
                pos = 2 * pos
            else:
                tmp = check
                pos = 2 * pos + 1
        return pos - self.num

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
R = li()

dp = SegmentTree([N+1]*N,min,N+1)
dp.update(N-1,0)
for i in range(N-1)[::-1]:
    tmp = dp.query(i+1,R[i]) + 1
    dp.update(i,tmp)

print(dp.query(0,1))

0