結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2023-02-18 10:03:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 102,088 KB
最終ジャッジ日時 2024-07-19 21:45:10
合計ジャッジ時間 9,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,212 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 98 ms
53,376 KB
testcase_05 AC 66 ms
53,632 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 45 ms
53,504 KB
testcase_09 AC 45 ms
53,376 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 44 ms
53,376 KB
testcase_12 AC 58 ms
64,000 KB
testcase_13 AC 57 ms
63,872 KB
testcase_14 AC 58 ms
63,872 KB
testcase_15 AC 57 ms
63,744 KB
testcase_16 AC 54 ms
61,696 KB
testcase_17 AC 54 ms
64,000 KB
testcase_18 AC 44 ms
53,760 KB
testcase_19 AC 53 ms
61,696 KB
testcase_20 AC 55 ms
64,768 KB
testcase_21 AC 76 ms
74,880 KB
testcase_22 AC 149 ms
92,432 KB
testcase_23 AC 244 ms
96,000 KB
testcase_24 AC 120 ms
92,544 KB
testcase_25 AC 241 ms
98,816 KB
testcase_26 AC 381 ms
102,088 KB
testcase_27 AC 423 ms
101,760 KB
testcase_28 AC 378 ms
102,016 KB
testcase_29 AC 322 ms
101,964 KB
testcase_30 AC 369 ms
102,016 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# dpでTLEした
# エラトステネスのようにやるか

N = int(input())
A = list(map(int, input().split()))

from collections import defaultdict
A_position = defaultdict(list)
for i in range(N):
    A_position[A[i]].append(i)

dp = [1]*N
maxA = max(A)
for i in range(N):
    current = dp[i]
    for q in range(A[i], maxA+1, A[i]):
        for r in A_position[q]:
            if r > i:
                dp[r] = max(dp[r], current+1)

#print(dp)

ans = max(dp)
print(ans)
0