結果

問題 No.1804 Intersection of LIS
ユーザー 👑 rin204rin204
提出日時 2022-01-25 01:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 210,368 KB
最終ジャッジ日時 2024-12-15 05:59:45
合計ジャッジ時間 9,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,808 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 37 ms
52,740 KB
testcase_03 AC 261 ms
115,224 KB
testcase_04 AC 268 ms
115,296 KB
testcase_05 AC 263 ms
115,504 KB
testcase_06 AC 261 ms
115,292 KB
testcase_07 AC 255 ms
115,496 KB
testcase_08 AC 262 ms
115,172 KB
testcase_09 AC 255 ms
115,220 KB
testcase_10 AC 262 ms
114,992 KB
testcase_11 AC 261 ms
115,020 KB
testcase_12 AC 263 ms
115,532 KB
testcase_13 AC 262 ms
115,348 KB
testcase_14 AC 257 ms
114,984 KB
testcase_15 AC 259 ms
115,500 KB
testcase_16 AC 267 ms
115,392 KB
testcase_17 AC 258 ms
115,348 KB
testcase_18 AC 59 ms
72,368 KB
testcase_19 AC 58 ms
72,592 KB
testcase_20 AC 59 ms
72,436 KB
testcase_21 AC 57 ms
72,352 KB
testcase_22 AC 60 ms
72,504 KB
testcase_23 AC 61 ms
71,288 KB
testcase_24 AC 60 ms
71,436 KB
testcase_25 AC 60 ms
72,924 KB
testcase_26 AC 60 ms
71,844 KB
testcase_27 AC 65 ms
74,336 KB
testcase_28 AC 35 ms
52,336 KB
testcase_29 AC 34 ms
53,416 KB
testcase_30 AC 34 ms
52,688 KB
testcase_31 AC 35 ms
52,132 KB
testcase_32 AC 34 ms
52,528 KB
testcase_33 AC 33 ms
53,356 KB
testcase_34 AC 40 ms
52,776 KB
testcase_35 AC 324 ms
210,368 KB
testcase_36 AC 321 ms
210,040 KB
testcase_37 AC 176 ms
114,612 KB
testcase_38 AC 172 ms
114,272 KB
testcase_39 AC 34 ms
53,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n = int(input())
P = list(map(int, input().split()))

def f(P):
    bef = [-1] * n
    lis = [0] * n
    lst = []
    pos = []
    for i, p in enumerate(P):
        j = bisect_left(lst, p)
        if len(lst) == j:
            lst.append(p)
            pos.append(i)
        else:
            lst[j] = p
            pos[j] = i
        lis[i] = j
        if j != 0:
            bef[i] = pos[j - 1]
    
    p = pos[-1]
    left = []
    while p != -1:
        left.append(P[p])
        p = bef[p]
    return left

left = f(P)[::-1]
P = P[::-1]
P = [-p for p in P]
right = f(P)
right = [-p for p in right]
ans = [l for l, r in zip(left, right) if l == r]
print(len(ans))
print(*ans)



0