結果

問題 No.979 Longest Divisor Sequence
ユーザー convexineqconvexineq
提出日時 2020-01-31 23:21:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,468 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 131,856 KB
最終ジャッジ日時 2024-09-17 10:42:00
合計ジャッジ時間 3,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,432 KB
testcase_01 AC 49 ms
59,116 KB
testcase_02 AC 49 ms
60,540 KB
testcase_03 AC 46 ms
59,444 KB
testcase_04 AC 49 ms
58,772 KB
testcase_05 AC 49 ms
60,732 KB
testcase_06 AC 49 ms
58,864 KB
testcase_07 AC 48 ms
58,780 KB
testcase_08 AC 53 ms
60,096 KB
testcase_09 AC 51 ms
59,972 KB
testcase_10 AC 66 ms
70,704 KB
testcase_11 AC 64 ms
69,040 KB
testcase_12 AC 63 ms
69,216 KB
testcase_13 AC 118 ms
131,856 KB
testcase_14 AC 1,468 ms
129,408 KB
testcase_15 AC 436 ms
108,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,*a = [int(i) for i in read().split()]

MAX = 1+3*10**5
#MAX = 20
ans = [1]*n
d = {}
for i,ai in enumerate(a):
    if ai in d:
        d[ai].append(i)
    else:
        d[ai] = [i]

from bisect import bisect_left
from itertools import groupby
for k in range(1,MAX):
    if k not in d: continue
    dk = d[k]
    v = [ans[i] for i in dk]
    l = len(v)
    for i in range(1,l):
        if v[i] < v[i-1]: v[i] = v[i-1]

    #print(k,c)
    for p in range(2*k,MAX,k):
        if p in d:
            for j in d[p]:
                idx = bisect_left(dk,j)
                #print(k,p,idx,j,ans)
                if idx >= 1: 
                    ans[j] = max(ans[j],v[idx-1]+1)
    
    #print(ans)
    
print(max(ans))

0