結果

問題 No.1804 Intersection of LIS
ユーザー noriocnorioc
提出日時 2024-07-19 03:04:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 5,104 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 263,096 KB
最終ジャッジ日時 2024-07-19 03:04:45
合計ジャッジ時間 15,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
68,224 KB
testcase_01 AC 75 ms
68,224 KB
testcase_02 AC 75 ms
67,968 KB
testcase_03 AC 534 ms
130,816 KB
testcase_04 AC 531 ms
130,944 KB
testcase_05 AC 536 ms
130,816 KB
testcase_06 AC 523 ms
130,816 KB
testcase_07 AC 555 ms
131,200 KB
testcase_08 AC 521 ms
131,072 KB
testcase_09 AC 523 ms
130,944 KB
testcase_10 AC 531 ms
130,944 KB
testcase_11 AC 522 ms
130,816 KB
testcase_12 AC 544 ms
130,816 KB
testcase_13 AC 607 ms
131,328 KB
testcase_14 AC 560 ms
130,944 KB
testcase_15 AC 521 ms
131,072 KB
testcase_16 AC 527 ms
131,456 KB
testcase_17 AC 532 ms
131,072 KB
testcase_18 AC 134 ms
79,104 KB
testcase_19 AC 144 ms
79,616 KB
testcase_20 AC 140 ms
79,360 KB
testcase_21 AC 132 ms
79,744 KB
testcase_22 AC 134 ms
79,488 KB
testcase_23 AC 134 ms
79,616 KB
testcase_24 AC 134 ms
79,488 KB
testcase_25 AC 137 ms
79,360 KB
testcase_26 AC 137 ms
79,104 KB
testcase_27 AC 134 ms
79,872 KB
testcase_28 AC 76 ms
67,840 KB
testcase_29 AC 76 ms
68,096 KB
testcase_30 AC 76 ms
67,968 KB
testcase_31 AC 76 ms
68,224 KB
testcase_32 AC 75 ms
68,224 KB
testcase_33 AC 77 ms
67,840 KB
testcase_34 AC 78 ms
68,224 KB
testcase_35 AC 877 ms
263,096 KB
testcase_36 AC 870 ms
262,672 KB
testcase_37 AC 283 ms
175,080 KB
testcase_38 AC 284 ms
175,212 KB
testcase_39 AC 76 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
input = sys.stdin.readline


def _ceil_pow2(n: int) -> int:
    x = 0
    while (1 << x) < n:
        x += 1

    return x


class SegTree:
    def __init__(self,
                 op: typing.Callable[[typing.Any, typing.Any], typing.Any],
                 e: typing.Any,
                 v: typing.Union[int, typing.List[typing.Any]]) -> None:
        self._op = op
        self._e = e

        if isinstance(v, int):
            v = [e] * v

        self._n = len(v)
        self._log = _ceil_pow2(self._n)
        self._size = 1 << self._log
        self._d = [e] * (2 * self._size)

        for i in range(self._n):
            self._d[self._size + i] = v[i]
        for i in range(self._size - 1, 0, -1):
            self._update(i)

    def set(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += self._size
        self._d[p] = x
        for i in range(1, self._log + 1):
            self._update(p >> i)

    def get(self, p: int) -> typing.Any:
        assert 0 <= p < self._n

        return self._d[p + self._size]

    def prod(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n
        sml = self._e
        smr = self._e
        left += self._size
        right += self._size

        while left < right:
            if left & 1:
                sml = self._op(sml, self._d[left])
                left += 1
            if right & 1:
                right -= 1
                smr = self._op(self._d[right], smr)
            left >>= 1
            right >>= 1

        return self._op(sml, smr)

    def all_prod(self) -> typing.Any:
        return self._d[1]

    def max_right(self, left: int,
                  f: typing.Callable[[typing.Any], bool]) -> int:
        assert 0 <= left <= self._n
        assert f(self._e)

        if left == self._n:
            return self._n

        left += self._size
        sm = self._e

        first = True
        while first or (left & -left) != left:
            first = False
            while left % 2 == 0:
                left >>= 1
            if not f(self._op(sm, self._d[left])):
                while left < self._size:
                    left *= 2
                    if f(self._op(sm, self._d[left])):
                        sm = self._op(sm, self._d[left])
                        left += 1
                return left - self._size
            sm = self._op(sm, self._d[left])
            left += 1

        return self._n

    def min_left(self, right: int,
                 f: typing.Callable[[typing.Any], bool]) -> int:
        assert 0 <= right <= self._n
        assert f(self._e)

        if right == 0:
            return 0

        right += self._size
        sm = self._e

        first = True
        while first or (right & -right) != right:
            first = False
            right -= 1
            while right > 1 and right % 2:
                right >>= 1
            if not f(self._op(self._d[right], sm)):
                while right < self._size:
                    right = 2 * right + 1
                    if f(self._op(self._d[right], sm)):
                        sm = self._op(self._d[right], sm)
                        right -= 1
                return right + 1 - self._size
            sm = self._op(self._d[right], sm)

        return 0

    def _update(self, k: int) -> None:
        self._d[k] = self._op(self._d[2 * k], self._d[2 * k + 1])


from collections import defaultdict, Counter
from bisect import bisect_left
# from atcoder.segtree import SegTree


def lis_ranks(a: list) -> list:
    """LIS のランクを返す"""
    n = len(a)
    ranks = [0] * n  # ranks[i] : A[i] が LIS の何番目か
    dp = [INF] * n
    for i in range(n):
        ranks[i] = bisect_left(dp, a[i])
        dp[ranks[i]] = a[i]

    return ranks


def lis_candidates(a: list[int], ranks: list[int]) -> list[int]:
    """LIS の構成要素となりうる要素のインデックスを返す"""
    n = len(a)
    max_rank = max(ranks)

    d = defaultdict(set)  # key=ランク val=そのランクのインデックス集合
    res = []
    for i in range(n):
        d[ranks[i]].add(i)
        if ranks[i] == max_rank:
            res.append(i)

    segt = SegTree(max, 0, n+1)
    for rank in reversed(range(max_rank)):  # 大きい順にみていく
        for i in d[rank+1]:
            segt.set(i, a[i])

        for i in list(d[rank]):
            x = segt.prod(i+1, n)  # i より右側に a[i] より大きい値が存在するか
            if a[i] < x:
                res.append(i)
            else:
                d[rank].remove(i)  # LIS の要素ではないので削除

        # 戻す
        for i in d[rank+1]:
            segt.set(i, 0)

    return sorted([i for i in res])


INF = 1 << 60
N = int(input())
A = list(map(int, input().split()))
ranks = lis_ranks(A)
inds = lis_candidates(A, ranks)

freq = Counter()
for i in inds:
    freq[ranks[i]] += 1

ans = []
for i in inds:
    if freq[ranks[i]] == 1:  # 唯一のランクか?
        ans.append(A[i])

print(len(ans))
print(*ans)
0