結果
| 問題 | No.390 最長の数列 |
| コンテスト | |
| ユーザー |
oxyshower
|
| 提出日時 | 2019-03-02 18:52:44 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 500 bytes |
| 記録 | |
| コンパイル時間 | 1,091 ms |
| コンパイル使用メモリ | 193,556 KB |
| 実行使用メモリ | 66,688 KB |
| 最終ジャッジ日時 | 2026-07-27 21:09:59 |
| 合計ジャッジ時間 | 22,859 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 9 TLE * 2 -- * 4 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
cin.tie(0);
ios::sync_with_stdio(false);
int n; cin >> n;
vector<int> x(n);
for(int i = 0; i < n; i++){
cin >> x[i];
}
sort(x.begin(),x.end());
map<int,int> dp;
for(int i : x){
dp[i] = max(dp[i],1LL);
for(int j = i*2; j <= 1000000; j+=i){
dp[j] = max(dp[j],dp[i]+1);
}
}
int ans = 0;
for(int i : x){
ans = max(ans,dp[i]);
}
cout << ans << endl;
return 0;
}
oxyshower