結果

問題 No.979 Longest Divisor Sequence
ユーザー ひばちひばち
提出日時 2020-01-31 22:09:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 892 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 169,388 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2023-10-17 09:58:30
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,492 KB
testcase_01 AC 3 ms
4,492 KB
testcase_02 AC 3 ms
4,492 KB
testcase_03 AC 3 ms
4,492 KB
testcase_04 AC 3 ms
4,492 KB
testcase_05 AC 3 ms
4,492 KB
testcase_06 AC 2 ms
4,492 KB
testcase_07 AC 3 ms
4,492 KB
testcase_08 AC 3 ms
4,492 KB
testcase_09 AC 3 ms
4,492 KB
testcase_10 AC 2 ms
4,492 KB
testcase_11 AC 3 ms
4,492 KB
testcase_12 AC 2 ms
4,492 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;

#define rep(i,n) for(int i=0;i<(int)n;++i)
#define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i)
#define debug(x) cout << #x << "=" << (x) << endl;
const ll MOD=1e9+7;

template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return true;}return false;}
template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return true;}return false;}
template<typename T> void fail(T v){cout << v << endl;exit(0);}
//template end

void solve(){
  int N;
  cin>>N;
  vector<int> A(N);
  rep(i,N) cin >> A[i];
  vector<int> res((int)3e5+1,0);
  int r=0;
  rrep(i,N){
    res[A[i]]=1;
    int m=0;
    for(ll j=A[i]<<1;j<res.size();j+=A[i])
      chmax(m,res[j]);
    res[A[i]]+=m;chmax(r,res[A[i]]);
  }
  cout<<r<<endl;
}

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(20);
  solve();
  return 0;
}
0