結果

問題 No.979 Longest Divisor Sequence
ユーザー convexineqconvexineq
提出日時 2020-01-31 23:15:24
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 917 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 147,788 KB
最終ジャッジ日時 2024-09-17 10:32:26
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 47 ms
59,264 KB
testcase_02 AC 44 ms
59,264 KB
testcase_03 AC 44 ms
58,752 KB
testcase_04 AC 50 ms
58,496 KB
testcase_05 AC 45 ms
58,368 KB
testcase_06 AC 46 ms
58,112 KB
testcase_07 AC 44 ms
58,752 KB
testcase_08 AC 49 ms
58,752 KB
testcase_09 AC 46 ms
58,880 KB
testcase_10 AC 82 ms
77,184 KB
testcase_11 AC 79 ms
76,688 KB
testcase_12 AC 80 ms
76,800 KB
testcase_13 AC 263 ms
147,788 KB
testcase_14 TLE -
testcase_15 AC 590 ms
108,288 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]

sa = sorted([(ai,i) for i,ai in enumerate(a)],key = lambda x: x[0])
from bisect import bisect_left
from itertools import groupby
for k,g in groupby(sa,key = lambda x: x[0]):
    c = sorted([[i,ans[i]] for a,i in g],key = lambda x: x[0])
    l = len(c)
    for i in range(1,l):
        c[i][1] = max(c[i][1],c[i-1][1])
    
    #print(k,c)
        
    for p in range(2*k,MAX,k):
        if p in d:
            for j in d[p]:
                idx = bisect_left(c,[j,-1])
                #print(k,p,idx,j,ans)
                if idx >= 1: 
                    ans[j] = max(ans[j],c[idx-1][1]+1)
    
    #print(ans)
    
print(max(ans))

0