結果

問題 No.2218 Multiple LIS
ユーザー vjudge1vjudge1
提出日時 2024-02-22 10:20:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 3,000 ms
コード長 558 bytes
コンパイル時間 1,301 ms
コンパイル使用メモリ 170,492 KB
実行使用メモリ 13,940 KB
最終ジャッジ日時 2024-09-29 04:24:59
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
13,056 KB
testcase_01 AC 86 ms
12,996 KB
testcase_02 AC 86 ms
12,800 KB
testcase_03 AC 85 ms
12,928 KB
testcase_04 AC 88 ms
12,928 KB
testcase_05 AC 87 ms
13,056 KB
testcase_06 AC 84 ms
13,128 KB
testcase_07 AC 86 ms
12,928 KB
testcase_08 AC 86 ms
12,968 KB
testcase_09 AC 91 ms
13,056 KB
testcase_10 AC 87 ms
12,928 KB
testcase_11 AC 86 ms
13,056 KB
testcase_12 AC 86 ms
13,508 KB
testcase_13 AC 87 ms
13,124 KB
testcase_14 AC 86 ms
13,128 KB
testcase_15 AC 90 ms
13,056 KB
testcase_16 AC 90 ms
13,124 KB
testcase_17 AC 85 ms
13,056 KB
testcase_18 AC 88 ms
12,928 KB
testcase_19 AC 86 ms
13,060 KB
testcase_20 AC 85 ms
13,508 KB
testcase_21 AC 90 ms
13,440 KB
testcase_22 AC 101 ms
13,764 KB
testcase_23 AC 112 ms
13,568 KB
testcase_24 AC 99 ms
13,392 KB
testcase_25 AC 120 ms
13,604 KB
testcase_26 AC 125 ms
13,696 KB
testcase_27 AC 122 ms
13,748 KB
testcase_28 AC 123 ms
13,940 KB
testcase_29 AC 123 ms
13,696 KB
testcase_30 AC 123 ms
13,824 KB
testcase_31 AC 106 ms
13,404 KB
testcase_32 AC 110 ms
13,392 KB
testcase_33 AC 107 ms
13,380 KB
testcase_34 AC 107 ms
13,508 KB
testcase_35 AC 106 ms
13,440 KB
testcase_36 AC 99 ms
13,380 KB
testcase_37 AC 117 ms
13,504 KB
testcase_38 AC 87 ms
12,928 KB
testcase_39 AC 84 ms
12,928 KB
testcase_40 AC 113 ms
13,416 KB
testcase_41 AC 114 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int INF = 1e5;
const int N = 1e5 + 5;

vector<int> g[N];
int n, dp[N], num[N];

int main(){
  for(int i = 1; i <= INF; i++){
    for(int j = 1; j * j <= i; j++){
      if(i % j == 0){
        g[i].push_back(j);
        if(j * j != i){
          g[i].push_back(i / j);
        }
      }
    }
  }
  cin >> n;
  for(int i = 1, x; i <= n; i++){
    cin >> x;
    for(int v : g[x]){
      dp[i] = max(dp[i], num[v] + 1);
    }
    num[x] = dp[i];
  }
  cout << *max_element(dp + 1, dp + n + 1);
  return 0;
}
0