結果

問題 No.1868 Teleporting Cyanmond
ユーザー horitaka1999horitaka1999
提出日時 2022-03-11 22:04:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 2,187 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-09-16 02:21:53
合計ジャッジ時間 8,792 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 334 ms
94,208 KB
testcase_04 AC 286 ms
87,168 KB
testcase_05 AC 136 ms
77,616 KB
testcase_06 AC 234 ms
80,232 KB
testcase_07 AC 292 ms
83,456 KB
testcase_08 AC 264 ms
80,172 KB
testcase_09 AC 362 ms
84,572 KB
testcase_10 AC 346 ms
92,416 KB
testcase_11 AC 89 ms
76,672 KB
testcase_12 AC 287 ms
81,968 KB
testcase_13 AC 285 ms
83,584 KB
testcase_14 AC 349 ms
94,208 KB
testcase_15 AC 307 ms
87,040 KB
testcase_16 AC 198 ms
78,964 KB
testcase_17 AC 235 ms
80,676 KB
testcase_18 AC 349 ms
96,052 KB
testcase_19 AC 347 ms
96,384 KB
testcase_20 AC 343 ms
96,128 KB
testcase_21 AC 346 ms
95,872 KB
testcase_22 AC 354 ms
96,364 KB
testcase_23 AC 307 ms
96,384 KB
testcase_24 AC 296 ms
96,384 KB
testcase_25 AC 308 ms
96,000 KB
testcase_26 AC 311 ms
96,128 KB
testcase_27 AC 306 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    """
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(k, x): k番目の値をxに更新 O(logN)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    """
    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        n: 要素数
        num: n以上の最小の2のべき乗
        tree: セグメント木(1-index)
        """
        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
        # 配列の値を葉にセット
        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番目の値をxに更新
        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る
        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res
    def value(self,index):
        return self.query(index,index+1)

N = int(input())
R = [0] + list(map(int,input().split()))
dp = [0 for _ in range(N+1)]
dp[1] = 0
INF = float('inf')
tmp = [INF for _ in range(N+1)]
seg = SegTree(tmp,segfunc=lambda x,y:min(x,y),ide_ele=INF)
seg.update(R[1],dp[1])
for i in range(2,N+1):
    dp[i] = seg.query(i,N+1) + 1
    if i == N:
        continue
    seg.update(R[i],min(seg.value(R[i]),dp[i]))
print(dp[N])
0