結果

問題 No.1804 Intersection of LIS
ユーザー pitPpitP
提出日時 2024-05-19 20:14:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 1,628 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 153,492 KB
最終ジャッジ日時 2024-05-19 20:15:01
合計ジャッジ時間 8,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 267 ms
115,880 KB
testcase_04 AC 274 ms
116,012 KB
testcase_05 AC 277 ms
115,504 KB
testcase_06 AC 304 ms
115,904 KB
testcase_07 AC 268 ms
115,416 KB
testcase_08 AC 271 ms
115,800 KB
testcase_09 AC 275 ms
115,684 KB
testcase_10 AC 273 ms
115,680 KB
testcase_11 AC 267 ms
115,936 KB
testcase_12 AC 294 ms
115,616 KB
testcase_13 AC 268 ms
116,052 KB
testcase_14 AC 274 ms
116,124 KB
testcase_15 AC 275 ms
115,412 KB
testcase_16 AC 298 ms
115,868 KB
testcase_17 AC 273 ms
115,548 KB
testcase_18 AC 55 ms
68,864 KB
testcase_19 AC 54 ms
69,248 KB
testcase_20 AC 52 ms
68,992 KB
testcase_21 AC 50 ms
69,376 KB
testcase_22 AC 52 ms
69,760 KB
testcase_23 AC 51 ms
69,376 KB
testcase_24 AC 52 ms
69,248 KB
testcase_25 AC 51 ms
68,736 KB
testcase_26 AC 52 ms
69,120 KB
testcase_27 AC 50 ms
69,760 KB
testcase_28 AC 37 ms
52,608 KB
testcase_29 AC 33 ms
52,096 KB
testcase_30 AC 33 ms
52,608 KB
testcase_31 AC 33 ms
52,480 KB
testcase_32 AC 43 ms
52,260 KB
testcase_33 AC 33 ms
52,480 KB
testcase_34 AC 32 ms
52,736 KB
testcase_35 AC 357 ms
153,436 KB
testcase_36 AC 352 ms
153,492 KB
testcase_37 AC 182 ms
114,928 KB
testcase_38 AC 215 ms
115,280 KB
testcase_39 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://qiita.com/recuraki/items/9ba63b343660da2437e8
inf = 2 ** 63 - 1

from bisect import bisect_left
def lis(l):
    # STEP1: LIS長パート with 使用位置
    n = len(l)
    lisDP = [inf] * n # 通常のLIS用リスト
    indexList = [None] * n # lの[i]文字目が使われた場所を記録する
    for i in range(n):
        # 通常のLISを求め、indexListに使った場所を記録する
        ind = bisect_left(lisDP, l[i])
        lisDP[ind] = l[i]
        indexList[i] = ind
    # STEP2: LIS復元パート by 元配列の使用した位置
    # 後ろから見ていくので、まずは、LIS長目(targetIndex)のindexListを探したいとする
    targetIndex = max(indexList)
    ans = [0] * (targetIndex + 1) # 復元結果(indexListは0-indexedなのでlen=4ならmax=3で格納されているので+1する)
    # 後ろから見ていく
    for i in range(n - 1, -1, -1):
        # もし、一番最後に出てきているtargetIndexなら
        if indexList[i] == targetIndex:
            ans[targetIndex] = l[i] # ansのtargetIndexを確定
            targetIndex -= 1
    return ans

#print(" ".join(list(map(str, lis([7,8,9,4,5,6,1]))))) # 4 5 6
#print(" ".join(list(map(str, lis([1,2,6,9,5,10]))))) # 1 2 6 9 10

#n = int(input())
#l = list(map(int, input().split()))
#print(" ".join(list(map(str, lis(l)))))

N = int(input())
P = list(map(int, input().split()))
dp = lis(P)
P = [-P[N - 1 - i] for i in range(N)]
ep = lis(P)
ep = [-ep[len(ep) - 1 - i] for i in range(len(ep))]

ans = []
for x, y in zip(dp, ep):
    if x == y:
        ans.append(x)
print(len(ans))
print(*ans)
0