結果

問題 No.919 You Are A Project Manager
ユーザー PachicobuePachicobue
提出日時 2019-10-25 22:03:59
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2,744 ms / 3,000 ms
コード長 6,258 bytes
コンパイル時間 2,622 ms
コンパイル使用メモリ 213,792 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-11 04:34:35
合計ジャッジ時間 62,730 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,613 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 AC 2 ms
4,352 KB
testcase_04 AC 295 ms
4,352 KB
testcase_05 AC 321 ms
4,352 KB
testcase_06 AC 45 ms
4,348 KB
testcase_07 AC 1,058 ms
4,356 KB
testcase_08 AC 248 ms
4,352 KB
testcase_09 AC 180 ms
4,348 KB
testcase_10 AC 328 ms
4,352 KB
testcase_11 AC 310 ms
4,352 KB
testcase_12 AC 10 ms
4,352 KB
testcase_13 AC 411 ms
4,352 KB
testcase_14 AC 24 ms
4,348 KB
testcase_15 AC 120 ms
4,352 KB
testcase_16 AC 574 ms
4,348 KB
testcase_17 AC 1,554 ms
4,348 KB
testcase_18 AC 1,586 ms
4,352 KB
testcase_19 AC 1,649 ms
4,352 KB
testcase_20 AC 2,483 ms
4,352 KB
testcase_21 AC 1,644 ms
4,352 KB
testcase_22 AC 1,149 ms
4,348 KB
testcase_23 AC 1,120 ms
4,348 KB
testcase_24 AC 1,189 ms
4,348 KB
testcase_25 AC 1,141 ms
4,352 KB
testcase_26 AC 2,441 ms
4,352 KB
testcase_27 AC 2,149 ms
4,352 KB
testcase_28 AC 2,670 ms
4,352 KB
testcase_29 AC 1,557 ms
4,348 KB
testcase_30 AC 1,563 ms
4,348 KB
testcase_31 AC 1,442 ms
4,352 KB
testcase_32 AC 1,488 ms
4,352 KB
testcase_33 AC 1,256 ms
4,352 KB
testcase_34 AC 1,253 ms
4,352 KB
testcase_35 AC 2,744 ms
4,348 KB
testcase_36 AC 2,739 ms
4,348 KB
testcase_37 AC 2,728 ms
4,348 KB
testcase_38 AC 2,736 ms
4,356 KB
testcase_39 AC 9 ms
4,348 KB
testcase_40 AC 127 ms
4,348 KB
testcase_41 AC 32 ms
4,352 KB
testcase_42 AC 42 ms
4,352 KB
testcase_43 AC 70 ms
4,352 KB
testcase_44 AC 167 ms
4,352 KB
testcase_45 AC 43 ms
4,352 KB
testcase_46 AC 142 ms
4,352 KB
testcase_47 AC 1,149 ms
4,352 KB
testcase_48 AC 1,131 ms
4,348 KB
testcase_49 AC 1,207 ms
4,348 KB
testcase_50 AC 1,140 ms
4,352 KB
testcase_51 AC 1,047 ms
4,352 KB
testcase_52 AC 820 ms
4,352 KB
testcase_53 AC 1,050 ms
4,348 KB
testcase_54 AC 126 ms
4,352 KB
testcase_55 AC 2 ms
4,352 KB
testcase_56 AC 2 ms
4,352 KB
testcase_57 AC 3 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

#define NDEBUG
using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
using uint = unsigned int;
using usize = std::size_t;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return ((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};
template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T>
std::vector<T> read_vec(const std::size_t size)
{
    std::vector<T> v(size);
    for (auto& e : v) { std::cin >> e; }
    return v;
}
template<typename... Types>
auto read_vals() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#define SHOW(...) static_cast<void>(0)
template<typename T>
std::vector<T> make_v(const std::size_t size, T v) { return std::vector<T>(size, v); }
template<class... Args>
auto make_v(const std::size_t size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }

template<usize lg>
class wavelet_matrix
{
public:
    using bucket_type                  = u64;
    static constexpr usize bucket_size = sizeof(bucket_type) * 8;
    template<typename InIt>
    wavelet_matrix(const InIt first, const InIt last) : sz{static_cast<usize>(std::distance(first, last))}
    {
        std::vector<bool> b(sz);
        std::vector<bucket_type> v{first, last};
        for (usize d = 0; d < lg; d++) {
            std::vector<bucket_type> z, o;
            for (usize i = 0; i < sz; i++) { b[i] = btest(v[i], lg - d - 1), (b[i] ? o : z).push_back(v[i]); }
            table.push_back(fid{b}), zero.push_back(z.size());
            for (usize i = 0; i < z.size(); i++) { v[i] = z[i]; }
            for (usize i = 0; i < o.size(); i++) { v[z.size() + i] = o[i]; }
        }
    }
    usize less_than(usize l, usize r, const bucket_type v) const
    {
        usize ans = 0;
        for (usize i = 0; i < lg; i++) {
            if (btest(v, lg - i - 1)) {
                ans += table[i].zero(r) - table[i].zero(l), l = zero[i] + table[i].one(l), r = zero[i] + table[i].one(r);
            } else {
                l = table[i].zero(l), r = table[i].zero(r);
            }
        }
        return ans;
    }
    usize range_freq(const usize l, const usize r, const bucket_type vmin, const bucket_type vsup) const { return less_than(l, r, vsup) - less_than(l, r, vmin); }

private:
    class fid
    {
    private:
        const usize sz;
        std::vector<bucket_type> data;
        std::vector<usize> large;

    public:
        fid(const std::vector<bool>& b) : sz(b.size()), data(sz / bucket_size + 2, 0), large(sz / bucket_size + 2, 0)
        {
            for (usize i = 0; i < sz; i++) { data[i / bucket_size] |= (static_cast<bucket_type>(b[i]) << (i % bucket_size)), large[i / bucket_size + 1] += b[i]; }
            for (usize i = 1; i < large.size(); i++) { large[i] += large[i - 1]; }
        }
        bool operator[](const usize n) const { return btest(data[n / bucket_size], n % bucket_size); }
        usize one(const usize n) const { return large[n / bucket_size] + popcount(bcut(data[n / bucket_size], n % bucket_size)); }
        usize zero(const usize n) const { return n - one(n); }
    };
    const usize sz;
    std::vector<usize> zero;
    std::vector<fid> table;
};
int main()
{
    const auto n     = read<usize>();
    const auto a     = read_vec<ll>(n);
    auto b           = a;
    constexpr ll MAX = 1000000000;
    for (usize i = 0; i < n; i++) { b[i] += MAX; }
    wavelet_matrix<32> wm(b.begin(), b.end());
    auto median = [&](const usize l, const usize r) -> ll {
        ll inf = -1, sup = 2 * MAX + 1;
        while (sup - inf > 1) {
            const ll mid                  = (inf + sup) / 2;
            const usize low               = wm.less_than(l, r, mid);
            (low * 2 < r - l ? inf : sup) = mid;
        }
        return inf - MAX;
    };
    ll ans = 0;
    for (usize k = 1; k <= n; k++) {
        std::vector<ll> left{0}, right{0};
        for (usize l = 0; l + k <= n; l += k) { left.push_back(median(l, l + k) * (ll)k); }
        for (int r = (int)n; r - (int)k >= 0; r -= k) { right.push_back(median(r - k, r) * (ll)k); }
        const usize s = left.size() - 1;
        SHOW(k, left, right);
        for (usize i = 1; i <= s; i++) { left[i] += left[i - 1], right[i] += right[i - 1]; }
        for (usize i = 1; i <= s; i++) { chmax(left[i], left[i - 1]), chmax(right[i], right[i - 1]); }
        SHOW(k, left, right);
        for (usize i = 0; i <= s; i++) { chmax(ans, left[i] + right[s - i]); }
    }
    std::cout << ans << std::endl;
    return 0;
}
0