結果

問題 No.1804 Intersection of LIS
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-20 02:41:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 151,032 KB
最終ジャッジ日時 2024-11-14 08:10:09
合計ジャッジ時間 11,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,860 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,684 KB
testcase_03 AC 474 ms
114,444 KB
testcase_04 AC 475 ms
114,460 KB
testcase_05 AC 476 ms
114,388 KB
testcase_06 AC 471 ms
114,564 KB
testcase_07 AC 475 ms
114,492 KB
testcase_08 AC 477 ms
114,744 KB
testcase_09 AC 480 ms
114,648 KB
testcase_10 AC 480 ms
114,268 KB
testcase_11 AC 483 ms
114,260 KB
testcase_12 AC 477 ms
114,452 KB
testcase_13 AC 475 ms
114,468 KB
testcase_14 AC 477 ms
114,652 KB
testcase_15 AC 474 ms
114,748 KB
testcase_16 AC 475 ms
114,984 KB
testcase_17 AC 478 ms
114,508 KB
testcase_18 AC 67 ms
75,924 KB
testcase_19 AC 66 ms
75,920 KB
testcase_20 AC 68 ms
76,072 KB
testcase_21 AC 67 ms
75,832 KB
testcase_22 AC 67 ms
75,836 KB
testcase_23 AC 67 ms
75,968 KB
testcase_24 AC 67 ms
76,248 KB
testcase_25 AC 66 ms
76,120 KB
testcase_26 AC 67 ms
76,028 KB
testcase_27 AC 67 ms
76,428 KB
testcase_28 WA -
testcase_29 AC 39 ms
52,700 KB
testcase_30 AC 39 ms
52,888 KB
testcase_31 AC 39 ms
53,156 KB
testcase_32 AC 39 ms
53,596 KB
testcase_33 AC 39 ms
53,348 KB
testcase_34 AC 38 ms
53,284 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 413 ms
114,496 KB
testcase_38 AC 426 ms
114,772 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

INF = 10 ** 9
def lis(x):
    dp = [INF] * (len(x) + 1)
    id = [0] * len(x)
    for i in range(len(x)):
        id[i] = bisect_left(dp, x[i])
        dp[bisect_left(dp, x[i])] = x[i]
    m = max(id)
    b = [0] * (m + 1)
    for i in range(len(x) - 1, -1, -1):
        if id[i] == m:
            b[m] = x[i]
            m -= 1
    return bisect_left(dp, INF), b
def lds(x):
    dp = [-INF] * (len(x) + 1)
    id = [0] * len(x)
    for i in range(len(x)):
        id[i] = bisect_left(dp, x[i]) - 1
        dp[bisect_left(dp, x[i]) - 1] = x[i]
    m = min(id)
    b = [0] * (max(id) + 1)
    for i in range(len(x))[::-1]:
        if id[i] == m:
            b[m] = x[i]
            m += 1
    return dp[::-1].index(-INF), b

n = int(input())
p = list(map(int, input().split()))
leng, lis_min = lis(p)
_, lis_max = lds(p[::-1])
lis_max = lis_max[::-1][:leng][::-1]
ans2 = []
for i in range(len(lis_min)):
    if lis_min[i] == lis_max[i]: ans2.append(lis_min[i])
print(len(ans2))
if len(ans2) == leng: print("!")
print(*ans2)
0