結果

問題 No.2218 Multiple LIS
ユーザー FromBooskaFromBooska
提出日時 2023-02-18 10:10:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 838 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 669,608 KB
最終ジャッジ日時 2024-07-19 21:53:45
合計ジャッジ時間 11,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,880 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 45 ms
53,248 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 45 ms
53,376 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 AC 45 ms
52,992 KB
testcase_12 AC 63 ms
64,768 KB
testcase_13 AC 66 ms
66,176 KB
testcase_14 AC 66 ms
65,792 KB
testcase_15 AC 64 ms
65,152 KB
testcase_16 AC 54 ms
61,056 KB
testcase_17 AC 67 ms
66,176 KB
testcase_18 AC 45 ms
53,632 KB
testcase_19 AC 55 ms
61,568 KB
testcase_20 AC 68 ms
66,304 KB
testcase_21 AC 88 ms
78,464 KB
testcase_22 AC 194 ms
101,420 KB
testcase_23 AC 269 ms
100,612 KB
testcase_24 AC 144 ms
94,336 KB
testcase_25 AC 309 ms
102,652 KB
testcase_26 AC 605 ms
113,132 KB
testcase_27 AC 653 ms
113,136 KB
testcase_28 AC 554 ms
112,292 KB
testcase_29 AC 483 ms
110,008 KB
testcase_30 AC 584 ms
112,340 KB
testcase_31 MLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 先頭からdp的辞書でやるか
# 辞書は失敗する、辞書が上書きされて後で参照した時に値が変わってしまっている
# dp的にやる
# 倍数約数で行ったり来たりするので間に合わない気がする

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)
    
#print(A_position)

div = defaultdict(list)
maxA = max(A)
for i in range(N):
    for q in range(A[i], maxA+1, A[i]):
        for r in A_position[q]:
            if r > i:
                div[r].append(i)

#print(div)

dp = [0]*(N)
dp[0] = 1
ans = 0
for i in range(N):
    num = A[i]
    mx = 1
    for j in div[i]:
        mx = max(mx, dp[j]+1)
    dp[i] = mx
    ans = max(ans, dp[i])
#print(dp)

print(ans)


0