結果

問題 No.2304 Distinct Elements
ユーザー risujirohrisujiroh
提出日時 2023-05-13 02:22:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 3,000 ms
コード長 3,504 bytes
コンパイル時間 3,935 ms
コンパイル使用メモリ 269,520 KB
実行使用メモリ 30,740 KB
最終ジャッジ日時 2024-05-06 15:03:33
合計ジャッジ時間 8,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 86 ms
6,944 KB
testcase_05 AC 85 ms
6,940 KB
testcase_06 AC 86 ms
6,940 KB
testcase_07 AC 85 ms
6,940 KB
testcase_08 AC 86 ms
6,944 KB
testcase_09 AC 90 ms
29,428 KB
testcase_10 AC 91 ms
29,720 KB
testcase_11 AC 91 ms
29,572 KB
testcase_12 AC 91 ms
29,300 KB
testcase_13 AC 92 ms
30,740 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 67 ms
6,940 KB
testcase_30 AC 7 ms
6,940 KB
testcase_31 AC 56 ms
6,944 KB
testcase_32 AC 73 ms
28,916 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 76 ms
29,620 KB
testcase_35 AC 83 ms
30,252 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 27 ms
6,944 KB
testcase_38 AC 87 ms
6,940 KB
testcase_39 AC 90 ms
6,940 KB
testcase_40 AC 54 ms
6,940 KB
testcase_41 AC 28 ms
6,940 KB
testcase_42 AC 78 ms
6,944 KB
testcase_43 AC 91 ms
6,944 KB
testcase_44 AC 68 ms
29,212 KB
testcase_45 AC 51 ms
17,392 KB
testcase_46 AC 41 ms
16,812 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 86 ms
6,944 KB
testcase_50 AC 89 ms
6,940 KB
testcase_51 AC 89 ms
6,940 KB
testcase_52 AC 100 ms
6,944 KB
testcase_53 AC 84 ms
28,708 KB
testcase_54 AC 86 ms
6,944 KB
testcase_55 AC 81 ms
6,940 KB
testcase_56 AC 80 ms
6,940 KB
testcase_57 AC 112 ms
11,772 KB
testcase_58 AC 111 ms
11,008 KB
testcase_59 AC 80 ms
6,940 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if __INCLUDE_LEVEL__ == 0

#include <bits/stdc++.h>

using namespace std;

#undef assert
#define assert(expr) (expr) || (__builtin_unreachable(), 0)

#include __BASE_FILE__

#define show(...) static_cast<void>(0)

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() {
    while (ssize(upper) < ssize(lower)) {
      upper.push(lower.top());
      lower.pop();
    }
    while (ssize(lower) < ssize(upper)) {
      lower.push(upper.top());
      upper.pop();
    }
    return lower.top();
  }

  int size() const { return ssize(lower) + ssize(upper); }

  void merge(S s) {
    show(size(), s.size());
    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);
    }
  }

  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()) {
      if (ssize(t) < ssize(s.back())) {
        swap(t, s.back());
      }
      t.merge(::move(s.back()));
      s.pop_back();
    }
    s.push_back(::move(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__
0