結果
問題 | No.390 最長の数列 |
ユーザー | amtgjw |
提出日時 | 2018-06-06 20:41:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 677 ms |
コンパイル使用メモリ | 68,652 KB |
実行使用メモリ | 7,584 KB |
最終ジャッジ日時 | 2024-06-30 10:19:54 |
合計ジャッジ時間 | 3,911 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,424 KB |
testcase_01 | AC | 4 ms
7,064 KB |
testcase_02 | AC | 4 ms
7,080 KB |
testcase_03 | AC | 4 ms
7,352 KB |
testcase_04 | AC | 4 ms
7,380 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 4 ms
7,168 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#include <iostream> #include <cstdio> #include <string> #include <vector> #include <cmath> #include <algorithm> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) #define PER(i,n) for(int i=0;i>(n);--i) #define PERS(i,s,t) for(int i=(s);i>(t);--i) #define INF 2000000007 #define MINF -200000007 #define MOD 17 // 2^20 #define MAX 1000005 typedef unsigned int uint; typedef unsigned long long int ull; typedef long long int ll; int dp[MAX]; int main(){ int N;cin>>N; vector<int> X(N); REP(i,N)cin>>X[i]; fill(dp,dp+MAX,MINF); sort(X.begin(),X.end()); REP(i,N){ int x = X[i]; if(dp[x]<0)dp[x]=1; REPS(j,1,X[N-1]) dp[(1+j)*x] = max(dp[(1+j)*x],dp[x]+1); } int maxl=0; REP(i,N)maxl=max(maxl,dp[X[i]]); cout << maxl << endl; return 0; }