結果

問題 No.390 最長の数列
ユーザー sobhy salemsobhy salem
提出日時 2024-08-27 10:31:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,127 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 186,592 KB
最終ジャッジ日時 2024-08-27 10:31:37
合計ジャッジ時間 17,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,204 ms
175,360 KB
testcase_01 AC 1,244 ms
175,360 KB
testcase_02 AC 1,245 ms
175,360 KB
testcase_03 AC 1,235 ms
175,360 KB
testcase_04 AC 1,236 ms
175,360 KB
testcase_05 AC 1,284 ms
186,592 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
import sys
input = sys.stdin.readline

def main():
    n = int(input())
    X = list(map(int, input().split()))
    X.sort()

    Idxs = [[] for _ in range(10**6 + 1)]
    for i in range(n):
        Idxs[X[i]].append(i)
    L = [0 for _ in range(10**6 + 1)]
    for i in range(10**6 + 1):
        L[i] = len(Idxs[i])

    DP = [[-1, -1] for _ in range(10**6 + 1)]
    for i in range(1, 10**6 + 1):
        if Idxs[i]:
            DP[i] = [1, Idxs[i][0]]
    ans = 1
    for i in range(1, 10**6 + 1):
        if DP[i][0] != -1:
            for j in range(2 * i, 10**6 + 1, i):
                if Idxs[j]:
                    idx = bisect_left(Idxs[j], DP[i][1])
                    if idx == L[j]:
                        continue
                    k = Idxs[j][idx]
                    if DP[i][0] + 1 > DP[j][0]:
                        DP[j] = [DP[i][0] + 1, k]
                    elif DP[i][0] + 1 == DP[j][0]:
                        if k < DP[j][1]:
                            DP[j][1] = k
                    ans = max(ans, DP[j][0])
    print(ans)

if __name__ == '__main__':
    main()
0