結果

問題 No.2218 Multiple LIS
ユーザー vjudge1vjudge1
提出日時 2023-08-29 12:15:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 693 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 170,644 KB
実行使用メモリ 814,712 KB
最終ジャッジ日時 2024-12-30 23:26:00
合計ジャッジ時間 18,577 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,132 KB
testcase_01 AC 4 ms
9,028 KB
testcase_02 AC 4 ms
8,388 KB
testcase_03 AC 4 ms
8,772 KB
testcase_04 AC 4 ms
9,540 KB
testcase_05 AC 4 ms
9,604 KB
testcase_06 AC 4 ms
8,128 KB
testcase_07 AC 5 ms
9,288 KB
testcase_08 AC 4 ms
8,208 KB
testcase_09 AC 4 ms
8,520 KB
testcase_10 AC 4 ms
8,648 KB
testcase_11 AC 4 ms
9,536 KB
testcase_12 AC 4 ms
8,132 KB
testcase_13 AC 5 ms
9,540 KB
testcase_14 AC 5 ms
9,416 KB
testcase_15 AC 4 ms
8,384 KB
testcase_16 AC 4 ms
8,212 KB
testcase_17 AC 5 ms
8,516 KB
testcase_18 AC 4 ms
8,388 KB
testcase_19 AC 4 ms
8,516 KB
testcase_20 AC 5 ms
8,260 KB
testcase_21 AC 20 ms
8,776 KB
testcase_22 AC 122 ms
10,944 KB
testcase_23 AC 212 ms
12,868 KB
testcase_24 AC 45 ms
9,408 KB
testcase_25 AC 239 ms
13,504 KB
testcase_26 AC 357 ms
16,840 KB
testcase_27 AC 362 ms
17,092 KB
testcase_28 AC 356 ms
16,452 KB
testcase_29 AC 354 ms
16,068 KB
testcase_30 AC 357 ms
16,580 KB
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 AC 6 ms
8,084 KB
testcase_39 AC 5 ms
8,136 KB
testcase_40 MLE -
testcase_41 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int kMaxN=1e5+3;
long long n,a[kMaxN],d[kMaxN],ans;
vector<int> w[kMaxN],s[kMaxN];
void F(long long x){
  for(long long i=1;i*i<=x;i++){
    if(x%i==0){
      if(w[i].size()){
        for(int j:w[i]){
          s[x].push_back(j);
        }
      }
      if(i*i!=x&&w[x/i].size()){
        for(int j:w[x/i]){
          s[x].push_back(j);
        }
      }
    }
  }
}
int main(){
  cin>>n;
  for(int i=1;i<=n;i++){
    cin>>a[i];
    d[i]=1,w[a[i]].push_back(i);
    F(a[i]);
  }
  for(int i=1;i<=n;i++){
    for(int j:s[a[i]]){
      if(j<i){
        d[i]=max(d[i],d[j]+1);
      }
    }
    ans=max(ans,d[i]);
  }
  cout<<ans;
  return 0;
}
0