結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 260 ms
115,036 KB
testcase_04 AC 259 ms
115,156 KB
testcase_05 AC 257 ms
115,156 KB
testcase_06 AC 259 ms
115,032 KB
testcase_07 AC 260 ms
115,032 KB
testcase_08 AC 261 ms
115,416 KB
testcase_09 AC 270 ms
115,164 KB
testcase_10 AC 264 ms
115,296 KB
testcase_11 AC 269 ms
115,104 KB
testcase_12 AC 265 ms
115,156 KB
testcase_13 AC 267 ms
115,156 KB
testcase_14 AC 272 ms
115,416 KB
testcase_15 AC 269 ms
114,904 KB
testcase_16 AC 268 ms
115,412 KB
testcase_17 AC 269 ms
115,544 KB
testcase_18 AC 70 ms
71,424 KB
testcase_19 AC 68 ms
71,424 KB
testcase_20 AC 70 ms
71,680 KB
testcase_21 AC 68 ms
70,528 KB
testcase_22 AC 68 ms
71,296 KB
testcase_23 AC 66 ms
70,400 KB
testcase_24 AC 68 ms
70,784 KB
testcase_25 AC 70 ms
71,168 KB
testcase_26 AC 66 ms
70,912 KB
testcase_27 AC 72 ms
73,088 KB
testcase_28 AC 37 ms
52,096 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 37 ms
52,224 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 42 ms
51,968 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 366 ms
210,168 KB
testcase_36 AC 359 ms
210,292 KB
testcase_37 AC 186 ms
114,776 KB
testcase_38 AC 206 ms
114,840 KB
testcase_39 AC 39 ms
52,224 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