結果
問題 | No.2304 Distinct Elements |
ユーザー | ei1333333 |
提出日時 | 2023-05-12 21:37:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 3,000 ms |
コード長 | 5,190 bytes |
コンパイル時間 | 2,393 ms |
コンパイル使用メモリ | 219,952 KB |
実行使用メモリ | 49,344 KB |
最終ジャッジ日時 | 2024-05-06 11:20:27 |
合計ジャッジ時間 | 8,898 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 119 ms
49,208 KB |
testcase_05 | AC | 121 ms
49,344 KB |
testcase_06 | AC | 124 ms
49,120 KB |
testcase_07 | AC | 124 ms
49,216 KB |
testcase_08 | AC | 125 ms
49,212 KB |
testcase_09 | AC | 177 ms
49,216 KB |
testcase_10 | AC | 172 ms
49,212 KB |
testcase_11 | AC | 175 ms
49,216 KB |
testcase_12 | AC | 176 ms
49,208 KB |
testcase_13 | AC | 172 ms
49,216 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 117 ms
38,084 KB |
testcase_30 | AC | 11 ms
6,144 KB |
testcase_31 | AC | 96 ms
31,560 KB |
testcase_32 | AC | 136 ms
39,816 KB |
testcase_33 | AC | 12 ms
6,272 KB |
testcase_34 | AC | 137 ms
40,600 KB |
testcase_35 | AC | 160 ms
44,900 KB |
testcase_36 | AC | 10 ms
5,760 KB |
testcase_37 | AC | 38 ms
16,896 KB |
testcase_38 | AC | 130 ms
48,528 KB |
testcase_39 | AC | 128 ms
49,164 KB |
testcase_40 | AC | 77 ms
34,548 KB |
testcase_41 | AC | 40 ms
19,456 KB |
testcase_42 | AC | 111 ms
49,212 KB |
testcase_43 | AC | 165 ms
49,208 KB |
testcase_44 | AC | 127 ms
36,864 KB |
testcase_45 | AC | 93 ms
30,160 KB |
testcase_46 | AC | 69 ms
24,296 KB |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 136 ms
49,340 KB |
testcase_50 | AC | 148 ms
49,340 KB |
testcase_51 | AC | 150 ms
49,212 KB |
testcase_52 | AC | 128 ms
49,212 KB |
testcase_53 | AC | 131 ms
49,208 KB |
testcase_54 | AC | 117 ms
49,316 KB |
testcase_55 | AC | 112 ms
49,340 KB |
testcase_56 | AC | 114 ms
49,208 KB |
testcase_57 | AC | 138 ms
49,216 KB |
testcase_58 | AC | 144 ms
49,212 KB |
testcase_59 | AC | 118 ms
49,340 KB |
testcase_60 | AC | 2 ms
5,376 KB |
testcase_61 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using int64 = long long; // const int mod = 1e9 + 7; const int mod = 998244353; const int64 infll = (1LL << 62) - 1; const int inf = (1 << 30) - 1; /* struct IoSetup { IoSetup() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(10); cerr << fixed << setprecision(10); } } iosetup; */ template< typename T1, typename T2 > ostream &operator<<(ostream &os, const pair< T1, T2 > &p) { os << p.first << " " << p.second; return os; } template< typename T1, typename T2 > istream &operator>>(istream &is, pair< T1, T2 > &p) { is >> p.first >> p.second; return is; } template< typename T > ostream &operator<<(ostream &os, const vector< T > &v) { for(int i = 0; i < (int) v.size(); i++) { os << v[i] << (i + 1 != v.size() ? " " : ""); } return os; } template< typename T > istream &operator>>(istream &is, vector< T > &v) { for(T &in : v) is >> in; return is; } template< typename T1, typename T2 > inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template< typename T1, typename T2 > inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); } template< typename T = int64 > vector< T > make_v(size_t a) { return vector< T >(a); } template< typename T, typename... Ts > auto make_v(size_t a, Ts... ts) { return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...)); } template< typename T, typename V > typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) { t = v; } template< typename T, typename V > typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) { for(auto &e : t) fill_v(e, v); } template< typename F > struct FixPoint : F { FixPoint(F &&f) : F(forward< F >(f)) {} template< typename... Args > decltype(auto) operator()(Args &&... args) const { return F::operator()(*this, forward< Args >(args)...); } }; template< typename F > inline decltype(auto) MFP(F &&f) { return FixPoint< F >{forward< F >(f)}; } /** * @brief Slope-Trick * @see https://maspypy.com/slope-trick-1-%E8%A7%A3%E8%AA%AC%E7%B7%A8 */ template< typename T > struct SlopeQueue { const T INF = numeric_limits< T >::max() / 3; T min_f; priority_queue< T, vector< T >, less<> > L; priority_queue< T, vector< T >, greater<> > R; T add_l, add_r; private: void push_R(const T &a) { R.push(a - add_r); } T top_R() const { return R.top() + add_r; } T pop_R() { T val = top_R(); R.pop(); return val; } void push_L(const T &a) { L.push(a - add_l); } T top_L() const { return L.top() + add_l; } T pop_L() { T val = top_L(); L.pop(); return val; } size_t size() { return L.size() + R.size() - 2; } public: SlopeQueue() : min_f(0), add_l(0), add_r(0) { L.push(-INF); R.push(INF); } struct Query { T lx, rx, min_f; }; // return min f(x) Query query() const { return (Query) {top_L(), top_R(), min_f}; } // f(x) += a void add_all(const T &a) { min_f += a; } // add \_ // f(x) += max(a - x, 0) void add_a_minus_x(const T &a) { min_f += max(T(0), a - top_R()); push_R(a); push_L(pop_R()); } // add _/ // f(x) += max(x - a, 0) void add_x_minus_a(const T &a) { min_f += max(T(0), top_L() - a); push_L(a); push_R(pop_L()); } // add \/ // f(x) += abs(x - a) void add_abs(const T &a) { add_a_minus_x(a); add_x_minus_a(a); } // \/ -> \_ // f_{new} (x) = min f(y) (y <= x) void clear_right() { while(R.size() >= 2) R.pop(); } // \/ -> _/ // f_{new} (x) = min f(y) (y >= x) void clear_left() { while(L.size() >= 2) L.pop(); } // \/ -> \_/ // f_{new} (x) = min f(y) (x-b <= y <= x-a) void shift(const T &a, const T &b) { assert(a <= b); add_l += a; add_r += b; } // \/. -> .\/ // f_{new} (x) = f(x - a) void shift(const T &a) { shift(a, a); } // L, R を破壊する T get(const T &x) { T ret = min_f; while(L.size() >= 2) { ret += max(T(0), pop_L() - x); } while(R.size() >= 2) { ret += max(T(0), x - pop_R()); } return ret; } void merge(SlopeQueue &st) { if(st.size() > size()) { swap(st.L, L); swap(st.R, R); swap(st.add_l, add_l); swap(st.add_r, add_r); swap(st.min_f, min_f); } while(st.R.size() >= 2) { add_x_minus_a(st.pop_R()); } while(st.L.size() >= 2) { add_a_minus_x(st.pop_L()); } min_f += st.min_f; } }; int main() { int N; cin >> N; vector< int > C(N); cin >> C; sort(C.rbegin(), C.rend()); vector< vector< int > > g(N); for(int i = 1; i < N; i++) { int p = i - 1; g[p].emplace_back(i); } vector< int > d(N); for(int i = 0; i < N; i++) { for(auto &to : g[i]) { d[to] = d[i] + 1; } } // f_i (x) = |x - C_i| + Σ min f_c (y) (y <= x) vector< SlopeQueue< int64 > > dp(N); for(int i = N - 1; i >= 0; i--) { for(auto &to : g[i]) { dp[to].clear_right(); dp[i].merge(dp[to]); } dp[i].add_abs(C[i] + d[i]); } cout << dp[0].query().min_f << "\n"; }