結果
問題 | 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,301 ms |
コンパイル使用メモリ | 169,940 KB |
実行使用メモリ | 12,448 KB |
最終ジャッジ日時 | 2024-09-17 08:25:46 |
合計ジャッジ時間 | 4,850 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#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; }