結果
問題 | No.2218 Multiple LIS |
ユーザー | FplusFplusF |
提出日時 | 2023-02-17 22:02:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,092 bytes |
コンパイル時間 | 2,079 ms |
コンパイル使用メモリ | 205,836 KB |
実行使用メモリ | 9,344 KB |
最終ジャッジ日時 | 2024-07-19 13:14:40 |
合計ジャッジ時間 | 7,023 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,504 KB |
testcase_01 | AC | 3 ms
5,504 KB |
testcase_02 | AC | 3 ms
5,504 KB |
testcase_03 | AC | 3 ms
5,504 KB |
testcase_04 | AC | 3 ms
5,632 KB |
testcase_05 | AC | 3 ms
5,632 KB |
testcase_06 | AC | 3 ms
5,504 KB |
testcase_07 | AC | 3 ms
5,504 KB |
testcase_08 | AC | 2 ms
5,504 KB |
testcase_09 | AC | 3 ms
5,504 KB |
testcase_10 | AC | 3 ms
5,504 KB |
testcase_11 | AC | 3 ms
5,504 KB |
testcase_12 | AC | 3 ms
5,632 KB |
testcase_13 | AC | 3 ms
5,632 KB |
testcase_14 | AC | 3 ms
5,632 KB |
testcase_15 | AC | 3 ms
5,632 KB |
testcase_16 | AC | 3 ms
5,504 KB |
testcase_17 | AC | 3 ms
5,632 KB |
testcase_18 | AC | 2 ms
5,504 KB |
testcase_19 | AC | 3 ms
5,504 KB |
testcase_20 | AC | 3 ms
5,632 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 56 ms
8,068 KB |
testcase_37 | RE | - |
testcase_38 | AC | 4 ms
5,632 KB |
testcase_39 | AC | 3 ms
5,504 KB |
testcase_40 | RE | - |
testcase_41 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for (long long i=0;i<(long long)(n);i++) #define all(v) v.begin(),v.end() using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } int main(){ ll n; cin >> n; vector<ll> a(n); vector<vector<ll>> b(1e5+1); ll mx=0; rep(i,n){ cin >> a[i]; chmax(mx,a[i]); b[a[i]].push_back(i); } vector<ll> dp(n,1); rep(i,n){ for(ll j=1;j<=100;j++){ auto itr=upper_bound(all(b[j*a[i]]),i); if(itr==b[j*a[i]].end()) continue; chmax(dp[(*itr)],dp[i]+1); } for(ll j=(mx+a[i]-1)/a[i];max(1ll,(mx+a[i]-1)/a[i]-100)<=j;j--){ auto itr=upper_bound(all(b[j*a[i]]),i); if(itr==b[j*a[i]].end()) continue; chmax(dp[(*itr)],dp[i]+1); } } ll ans=1; rep(i,n) chmax(ans,dp[i]); cout << ans << endl; }