結果

問題 No.2218 Multiple LIS
ユーザー hari64hari64
提出日時 2023-02-17 21:40:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,567 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 215,384 KB
実行使用メモリ 417,480 KB
最終ジャッジ日時 2024-07-19 12:50:28
合計ジャッジ時間 10,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 137 ms
10,112 KB
testcase_23 AC 278 ms
13,312 KB
testcase_24 AC 43 ms
6,400 KB
testcase_25 AC 300 ms
14,464 KB
testcase_26 AC 458 ms
18,944 KB
testcase_27 AC 464 ms
19,072 KB
testcase_28 AC 477 ms
18,560 KB
testcase_29 AC 469 ms
18,176 KB
testcase_30 AC 476 ms
18,688 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef hari64
#include <bits/stdc++.h>
// #pragma GCC target("avx2")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
#define debug(...)
#else
#include "util/viewer.hpp"
#define debug(...) viewer::_debug(__LINE__, #__VA_ARGS__, __VA_ARGS__)
#endif
using namespace std;
constexpr int INF = 1001001001;
constexpr long long INFll = 1001001001001001001;
template <class T>
bool chmax(T& a, const T& b) {
    return a < b ? a = b, 1 : 0;
}
template <class T>
bool chmin(T& a, const T& b) {
    return a > b ? a = b, 1 : 0;
}

template <class T>
vector<T> divisors(T n) {
    vector<T> ret;
    for (T i = 1; i * i <= n; i++) {
        if (n % i == 0) {
            ret.push_back(i);
            if (i * i != n) ret.push_back(n / i);
        }
    }
    sort(begin(ret), end(ret));
    return ret;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N;
    cin >> N;
    vector<int> As(N);
    map<int, vector<int>> m;
    for (int i = 0; i < N; i++) {
        cin >> As[i];
        m[As[i]].push_back(i);
    }
    vector<vector<int>> adj(N);
    for (int i = 0; i < N; i++) {
        for (auto& d : divisors(As[i])) {
            for (auto& ni : m[d]) {
                if (ni < i) {
                    adj[ni].push_back(i);
                }
            }
        }
    }
    debug(adj);

    vector<int> dp(N, 1);

    for (int i = 0; i < N; i++) {
        for (auto& j : adj[i]) {
            chmax(dp[j], dp[i] + 1);
        }
    }
    debug(dp);

    cout << *max_element(dp.begin(), dp.end()) << endl;

    return 0;
}
0