結果
問題 | No.2304 Distinct Elements |
ユーザー | risujiroh |
提出日時 | 2023-05-12 22:56:53 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,297 bytes |
コンパイル時間 | 3,608 ms |
コンパイル使用メモリ | 268,016 KB |
実行使用メモリ | 11,036 KB |
最終ジャッジ日時 | 2024-05-06 12:59:37 |
合計ジャッジ時間 | 8,750 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
ソースコード
#if __INCLUDE_LEVEL__ == 0 #include <bits/stdc++.h> using namespace std; #undef assert #define assert(expr) (expr) || (__builtin_unreachable(), 0) #include __BASE_FILE__ namespace std::ranges::views { namespace { struct S { priority_queue<int> lower; priority_queue<int, vector<int>, ::greater<>> upper; explicit S(int x) { lower.push(x); } int median() const { return lower.top(); } void merge(S s) { while (ssize(s.lower)) { add(s.lower.top()); s.lower.pop(); } while (ssize(s.upper)) { add(s.upper.top()); s.upper.pop(); } } void add(int x) { if (::empty(upper) || x < upper.top()) { lower.push(x); } else { upper.push(x); } while (ssize(upper) < ssize(lower)) { upper.push(lower.top()); lower.pop(); } while (ssize(lower) < ssize(upper)) { lower.push(upper.top()); upper.pop(); } } int64_t cost() { int m = median(); int64_t cost = 0; while (ssize(lower)) { cost += abs(lower.top() - m); lower.pop(); } while (ssize(upper)) { cost += abs(upper.top() - m); upper.pop(); } return cost; } }; void solve() { int n; cin >> n; vector<int> a(n); cin >> a; sort(a); for (int i : iota(0, n)) { a[i] -= i; } vector<S> s; for (int e : a) { S t(e); while (ssize(s) && t.median() < s.back().median()) { t.merge(::move(s.back())); s.pop_back(); } s.push_back(t); } int64_t ans = 0; for (auto&& e : s) { ans += e.cost(); } cout << ans << '\n'; } } // namespace } // namespace std::ranges::views using views::solve; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); } #else // __INCLUDE_LEVEL__ namespace std { template <class T1, class T2> istream& operator>>(istream& is, pair<T1, T2>& p) { return is >> p.first >> p.second; } template <class... Ts> istream& operator>>(istream& is, tuple<Ts...>& t) { return apply([&is](auto&... xs) -> istream& { return (is >> ... >> xs); }, t); } template <class R, enable_if_t<!is_convertible_v<R, string>>* = nullptr> auto operator>>(istream& is, R&& r) -> decltype(is >> *begin(r)) { for (auto&& e : r) { is >> e; } return is; } template <class T1, class T2> ostream& operator<<(ostream& os, const pair<T1, T2>& p) { return os << p.first << ' ' << p.second; } template <class... Ts> ostream& operator<<(ostream& os, const tuple<Ts...>& t) { auto f = [&os](const auto&... xs) -> ostream& { [[maybe_unused]] auto sep = ""; ((os << exchange(sep, " ") << xs), ...); return os; }; return apply(f, t); } namespace impl { template <class R> constexpr int n_dims(char) { return 0; } template <class R> constexpr auto n_dims(int) -> decltype(begin(declval<R>()), 0) { return n_dims<decltype(*begin(declval<R>()))>(0) + 1; } } // namespace impl template <class R, enable_if_t<!is_convertible_v<R, string_view>>* = nullptr> auto operator<<(ostream& os, R&& r) -> decltype(os << *begin(r)) { static constexpr int D = impl::n_dims<R>(0); static const string SEP = 1 < D ? string(D - 1, '\n') : " "; string sep; for (auto&& e : r) { os << exchange(sep, SEP) << e; } return os; } } // namespace std #endif // __INCLUDE_LEVEL__