結果

問題 No.979 Longest Divisor Sequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-16 14:29:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,934 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 190,284 KB
最終ジャッジ日時 2024-06-07 13:43:57
合計ジャッジ時間 5,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
79,872 KB
testcase_01 AC 68 ms
80,000 KB
testcase_02 AC 67 ms
80,128 KB
testcase_03 AC 68 ms
80,128 KB
testcase_04 AC 69 ms
80,256 KB
testcase_05 AC 68 ms
80,256 KB
testcase_06 AC 66 ms
80,256 KB
testcase_07 AC 65 ms
79,872 KB
testcase_08 AC 67 ms
80,384 KB
testcase_09 AC 65 ms
80,000 KB
testcase_10 AC 113 ms
96,128 KB
testcase_11 AC 109 ms
96,000 KB
testcase_12 AC 110 ms
96,128 KB
testcase_13 AC 259 ms
155,380 KB
testcase_14 AC 1,934 ms
190,284 KB
testcase_15 AC 613 ms
124,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
A = list(map(int,input().split()))
M = 3*10**5+5
count = [0]*M
for a in A:
    count[a] += 1

lis = [[] for i in range(M)]
for i in range(M)[::-1]:
    if count[i] == 0:
        continue
    for j in range(i*2,M,i):
        if count[j]:
            lis[j].append(i)

ans = [0]*n
res = [[] for i in range(M)]
sA = [[a,i] for i,a in enumerate(A)]
sA.sort()

for a,ind in sA:
    cand = 1
    for nex in lis[a]:
        if res[nex]:
            nind = bisect.bisect_left(res[nex],ind)
            if nind:
                cand = max(cand,ans[res[nex][nind-1]]+1)
    ans[ind] = cand
    res[a].append(ind)

print(max(ans))
0