結果
問題 | No.2218 Multiple LIS |
ユーザー | FromBooska |
提出日時 | 2023-02-18 08:49:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 800 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 735,776 KB |
最終ジャッジ日時 | 2024-07-19 20:48:20 |
合計ジャッジ時間 | 12,004 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 83 ms
58,880 KB |
testcase_01 | AC | 41 ms
53,376 KB |
testcase_02 | AC | 42 ms
53,376 KB |
testcase_03 | AC | 41 ms
53,504 KB |
testcase_04 | AC | 40 ms
53,376 KB |
testcase_05 | AC | 40 ms
53,504 KB |
testcase_06 | AC | 48 ms
53,376 KB |
testcase_07 | AC | 46 ms
53,504 KB |
testcase_08 | AC | 47 ms
53,376 KB |
testcase_09 | AC | 46 ms
53,760 KB |
testcase_10 | AC | 46 ms
53,760 KB |
testcase_11 | AC | 45 ms
53,760 KB |
testcase_12 | AC | 60 ms
63,488 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 42 ms
53,376 KB |
testcase_19 | AC | 50 ms
61,568 KB |
testcase_20 | WA | - |
testcase_21 | AC | 91 ms
78,080 KB |
testcase_22 | WA | - |
testcase_23 | AC | 281 ms
106,124 KB |
testcase_24 | AC | 150 ms
94,336 KB |
testcase_25 | AC | 300 ms
107,024 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | MLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
# 先頭から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 mx_dic = {} for i in range(N): num = A[i] if num in mx_dic: mx_dic[num] += 1 else: mx = 1 for j in div[i]: mx = max(mx, dp[j]+1) mx_dic[num] = mx dp[i] = mx_dic[num] #print(dp) ans = max(dp) print(ans)