結果

問題 No.1867 Partitions and Inversions
ユーザー ForestedForested
提出日時 2022-01-20 21:14:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,337 ms / 5,000 ms
コード長 4,628 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 86,272 KB
実行使用メモリ 144,640 KB
最終ジャッジ日時 2024-11-24 06:00:45
合計ジャッジ時間 92,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2,194 ms
144,384 KB
testcase_03 AC 2,188 ms
144,512 KB
testcase_04 AC 2,179 ms
144,512 KB
testcase_05 AC 2,182 ms
144,512 KB
testcase_06 AC 2,180 ms
144,512 KB
testcase_07 AC 2,181 ms
144,384 KB
testcase_08 AC 2,175 ms
144,384 KB
testcase_09 AC 2,196 ms
144,384 KB
testcase_10 AC 2,223 ms
144,384 KB
testcase_11 AC 2,189 ms
144,512 KB
testcase_12 AC 2,189 ms
144,512 KB
testcase_13 AC 2,198 ms
144,384 KB
testcase_14 AC 2,222 ms
144,512 KB
testcase_15 AC 2,205 ms
144,384 KB
testcase_16 AC 2,337 ms
144,384 KB
testcase_17 AC 2,261 ms
144,384 KB
testcase_18 AC 2,185 ms
144,640 KB
testcase_19 AC 2,182 ms
144,512 KB
testcase_20 AC 2,229 ms
144,384 KB
testcase_21 AC 2,180 ms
144,512 KB
testcase_22 AC 2,195 ms
144,512 KB
testcase_23 AC 2,218 ms
144,512 KB
testcase_24 AC 2,229 ms
144,512 KB
testcase_25 AC 2,201 ms
144,512 KB
testcase_26 AC 2,188 ms
144,640 KB
testcase_27 AC 2,208 ms
144,512 KB
testcase_28 AC 2,335 ms
144,384 KB
testcase_29 AC 2,179 ms
144,384 KB
testcase_30 AC 2,213 ms
144,384 KB
testcase_31 AC 2,191 ms
144,384 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 43 ms
7,552 KB
testcase_39 AC 43 ms
7,552 KB
testcase_40 AC 43 ms
7,552 KB
testcase_41 AC 43 ms
7,552 KB
testcase_42 AC 44 ms
7,552 KB
testcase_43 AC 877 ms
66,304 KB
testcase_44 AC 862 ms
66,176 KB
testcase_45 AC 877 ms
66,304 KB
testcase_46 AC 861 ms
66,176 KB
testcase_47 AC 872 ms
66,304 KB
testcase_48 AC 869 ms
66,304 KB
testcase_49 AC 880 ms
66,304 KB
testcase_50 AC 870 ms
66,304 KB
testcase_51 AC 876 ms
66,304 KB
testcase_52 AC 870 ms
66,304 KB
testcase_53 AC 874 ms
66,304 KB
testcase_54 AC 872 ms
66,176 KB
testcase_55 AC 864 ms
66,176 KB
testcase_56 AC 849 ms
66,176 KB
testcase_57 AC 871 ms
66,304 KB
testcase_58 AC 842 ms
66,304 KB
testcase_59 AC 872 ms
66,176 KB
testcase_60 AC 856 ms
66,304 KB
testcase_61 AC 875 ms
66,304 KB
testcase_62 AC 869 ms
66,304 KB
testcase_63 AC 2,104 ms
144,384 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 2 ms
5,248 KB
testcase_67 AC 1,838 ms
144,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// ===== smawk.hpp =====
#ifndef SMAWK_HPP
#define SMAWK_HPP

#include <vector>
#include <numeric>
#include <algorithm>

template <typename F>
std::vector<std::size_t> smawk_inner(const F &f, const std::vector<std::size_t> &rows, const std::vector<std::size_t> &cols) {
    if (rows.empty()) {
        return std::vector<std::size_t>(0);
    }
    std::vector<std::size_t> red_cols;
    red_cols.reserve(rows.size());
    for (std::size_t c : cols) {
        while (!red_cols.empty() && f(rows[red_cols.size() - 1], red_cols.back()) >= f(rows[red_cols.size() - 1], c)) {
            red_cols.pop_back();
        }
        if (red_cols.size() < rows.size()) {
            red_cols.push_back(c);
        }
    }
    std::vector<std::size_t> red_rows;
    red_rows.reserve(rows.size() / 2);
    for (std::size_t i = 1; i < rows.size(); i += 2) {
        red_rows.push_back(rows[i]);
    }
    std::vector<std::size_t> sub = smawk_inner(f, red_rows, red_cols);
    std::vector<std::size_t> ret(rows.size());
    for (std::size_t i = 0; i < sub.size(); ++i) {
        ret[2 * i + 1] = sub[i];
    }
    std::size_t it = 0;
    for (std::size_t i = 0; i < rows.size(); i += 2) {
        ret[i] = red_cols[it];
        std::size_t fin = (i + 1 == rows.size() ? red_cols.back() : ret[i + 1]);
        while (red_cols[it] != fin) {
            ++it;
            if (f(rows[i], ret[i]) > f(rows[i], red_cols[it])) {
                ret[i] = red_cols[it];
            }
        }
    }
    return ret;
}

template <typename F>
std::vector<std::size_t> smawk(const F &f, std::size_t h, std::size_t w) {
    std::vector<std::size_t> rows(h);
    std::iota(rows.begin(), rows.end(), 0);
    std::vector<std::size_t> cols(w);
    std::iota(cols.begin(), cols.end(), 0);
    return smawk_inner(f, rows, cols);
}

template <typename F>
std::vector<std::size_t> smawk_maxima(const F &f, std::size_t h, std::size_t w) {
    const auto g = [&](std::size_t i, std::size_t j) {
        return -f(h - 1 - i, j);
    };
    std::vector<std::size_t> ret = smawk(g, h, w);
    std::reverse(ret.begin(), ret.end());
    return ret;
    /*using V = decltype(f(h, w));
    std::vector<std::size_t> ret(h, 0);
    for (std::size_t i = 0; i < h; ++i) {
        V cur = f(i, 0ul);
        for (std::size_t j = 1; j < w; ++j) {
            V tmp = f(i, j);
            if (tmp > cur) {
                cur = tmp;
                ret[i] = j;
            }
        }
    }
    return ret;*/
}

#endif
// ===== smawk.hpp =====

#include <iostream>
#include <utility>
#include <cassert>
#include <algorithm>

using usize = std::size_t;

std::vector<std::vector<usize>> calc_inv(std::vector<usize> p) {
    usize n = p.size();
    
    std::vector<std::vector<usize>> sum(n + 1, std::vector<usize>(n + 1, 0));
    for (usize i = 0; i < n; ++i) {
        sum[i + 1] = sum[i];
        for (usize j = p[i]; j < n; ++j) {
            ++sum[i + 1][j + 1];
        }
    }
    
    std::vector<std::vector<usize>> inv(n, std::vector<usize>(n + 1, 0));
    for (usize i = 0; i < n; ++i) {
        usize s = 0;
        for (usize j = i; j < n; ++j) {
            s += sum[j][n] - sum[i][n] - sum[j][p[j]] + sum[i][p[j]];
            inv[i][j + 1] = s;
        }
    }
    return inv;
}

void fast_dp(
    const std::vector<std::vector<usize>> &f,
    const std::vector<usize> &from,
    std::vector<usize> &to,
    usize l,
    usize r
) {
    if (l + 1 == r) {
        return;
    }
    usize mid = (l + r) / 2;
    fast_dp(f, from, to, l, mid);
    const auto jump = [&](usize i, usize j) -> long {
        i += mid;
        j += l;
        return from[j] + f[j][i];
    };
    std::vector<usize> max_index = smawk_maxima(jump, r - mid, mid - l);
    for (usize i = 0; i < r - mid; ++i) {
        usize tmp = jump(i, max_index[i]);
        if (tmp > to[i + mid]) {
            to[i + mid] = tmp;
        }
    }
    fast_dp(f, from, to, mid, r);
}

std::vector<std::vector<usize>> calc_dp(std::vector<std::vector<usize>> inv) {
    usize n = inv.size();
    
    std::vector<std::vector<usize>> dp(n + 1, std::vector<usize>(n + 1, 0));
    for (usize i = 0; i < n; ++i) {
        fast_dp(inv, dp[i], dp[i + 1], i, n + 1);
    }
    return dp;
}

int main() {
    usize n;
    std::cin >> n;
    std::vector<std::size_t> p(n);
    for (std::size_t &ele : p) {
        std::cin >> ele;
        --ele;
    }
    
    std::vector<std::vector<usize>> inv = calc_inv(std::move(p));
    usize all_inv = inv[0][n];
    
    std::vector<std::vector<usize>> dp = calc_dp(std::move(inv));
    for (usize i = 1; i <= n; ++i) {
        std::cout << all_inv - dp[i][n] << '\n';
    }
}
0