結果

問題 No.2218 Multiple LIS
ユーザー kztasakztasa
提出日時 2023-02-18 02:11:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,581 bytes
コンパイル時間 3,902 ms
コンパイル使用メモリ 245,992 KB
実行使用メモリ 28,796 KB
最終ジャッジ日時 2023-09-26 22:50:55
合計ジャッジ時間 15,590 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,384 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 35 ms
6,164 KB
testcase_22 AC 267 ms
15,108 KB
testcase_23 AC 491 ms
21,252 KB
testcase_24 AC 84 ms
8,736 KB
testcase_25 AC 551 ms
22,780 KB
testcase_26 AC 845 ms
28,476 KB
testcase_27 AC 851 ms
28,540 KB
testcase_28 AC 862 ms
28,648 KB
testcase_29 AC 827 ms
28,752 KB
testcase_30 AC 854 ms
28,796 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 #

#include <bits/stdc++.h> 
#include <atcoder/all>
#define pub push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i, n) rep2(i, 0, n)
#define rep2(i, m, n) for (ll i = m; i < (n); i++)
#define per(i, b) per2(i, 0, b)
#define per2(i, a, b) for (ll i = int(b) - 1; i >= int(a); i--)
#define ALL(c) (c).begin(), (c).end()
using namespace std;
using namespace atcoder;
using ll = long long;
using Pll = pair<ll, ll>;
using mint = modint998244353;
using mint2 = modint1000000007;

constexpr long long INF = (1LL << 60);
constexpr double EPS = 1e-9;
constexpr double PI = 3.141592653589;

template <typename T>
bool chmax(T& a, const T& b) {
    if (a < b) {
        a = b;  // aをbで更新
        return true;
    }
    return false;
}

template <typename T>
bool chmin(T& a, const T& b) {
    if (a > b) {
        a = b;  // aをbで更新
        return true;
    }
    return false;
}

template <typename T>
T sq(T x) {
    return x * x;
}

std::string zfill(int n, const int width)
{
    std::stringstream ss;
    ss << std::setw(width) << std::setfill('0') << n;
    return ss.str();
}

/*  divisor(n)
    入力:整数 n
    出力:nのすべての約数
    計算量:O(√n)
*/
vector<long long> divisor(long long n) {
    vector<long long> ret;
    for (long long i = 1; i * i <= n; i++) {
        if (n % i == 0) {
            ret.push_back(i);
            if (i * i != n) ret.push_back(n / i);
        }
    }
    sort(ret.begin(), ret.end()); // 昇順に並べる
    return ret;
}

int main(void) {
    //cout << fixed << setprecision(10);
    ll N; cin >> N;
    vector<ll> A(N);
    vector<ll> in(N);
    map<ll,ll> cnt;
    map<ll, vector<ll>> G;
    rep(i, N) {
        cin >> A[i];
        vector<ll> d = divisor(A[i]);
        for (auto a : d) {
            G[a].pub(i);
            if (cnt.count(a)) {
                in[i] += cnt[a];
            }
        }
        cnt[A[i]]++;
    }
    queue<ll> que;
    vector<ll> dis(N, -1);
    ll ans = 1;
    rep(i, N) {
        if (in[i] == 0) {
            dis[i] = 1;
            que.push(i);
        }
    }
    while (!que.empty()) {
        ll v = que.front();
        que.pop();
        for (auto nv : G[A[v]]) {
            if (nv <= v) {
                continue;
            }
            else {
                chmax(dis[nv], dis[v] + 1);
                chmax(ans, dis[nv]);
                in[nv]--;
                if (in[nv] == 0) {
                    que.push(nv);
                }
            }
        }
    }
    cout << ans << endl;
}







0