結果
問題 | No.2627 Unnatural Pitch |
ユーザー | 👑 emthrm |
提出日時 | 2024-02-10 03:37:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 143 ms / 4,000 ms |
コード長 | 2,427 bytes |
コンパイル時間 | 3,364 ms |
コンパイル使用メモリ | 266,420 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-09-28 16:59:22 |
合計ジャッジ時間 | 5,742 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 22 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 75 ms
15,704 KB |
testcase_05 | AC | 92 ms
15,820 KB |
testcase_06 | AC | 52 ms
6,816 KB |
testcase_07 | AC | 35 ms
6,820 KB |
testcase_08 | AC | 63 ms
14,192 KB |
testcase_09 | AC | 121 ms
15,872 KB |
testcase_10 | AC | 123 ms
15,784 KB |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 110 ms
14,444 KB |
testcase_17 | AC | 143 ms
15,572 KB |
testcase_18 | AC | 112 ms
14,248 KB |
testcase_19 | AC | 129 ms
14,836 KB |
testcase_20 | AC | 36 ms
6,816 KB |
testcase_21 | AC | 79 ms
8,372 KB |
testcase_22 | AC | 134 ms
11,480 KB |
testcase_23 | AC | 71 ms
7,984 KB |
testcase_24 | AC | 62 ms
9,348 KB |
testcase_25 | AC | 84 ms
9,804 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 998244353; // constexpr int MOD = 1000000007; constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}; constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; int main() { int n, k; ll l, u; cin >> n >> k >> l >> u; u -= l; vector<ll> a(n); for (ll& a_i : a) cin >> a_i; ranges::sort(a); for (int i = n - 1; i >= 0; --i) { a[i] -= a.front(); } ll lb = 0, ub = a.back() + 1; while (ub - lb > 1) { const ll mid = midpoint(lb, ub); int le = 0, ri = n - 1; while (le < n && a[le] < mid) ++le; while (ri >= 0 && a[ri] > mid + u) --ri; (le <= n - 1 - ri ? lb : ub) = mid; } ll x = max(lb - k, 0LL), cost = 0; vector<int> add_l(k, 0), add_r(k, 0); REP(i, n) { if (a[i] < x) { cost += (x - a[i] + k - 1) / k; ++add_l[a[i] % k]; } else if (x + u < a[i]) { cost += (a[i] - (x + u) + k - 1) / k; ++add_r[a[i] % k]; } } // REP(i, n) cout << a[i] << " \n"[i + 1 == n]; unordered_map<ll, int> mp; REP(i, n) ++mp[a[i]]; ll ans = LINF; for (; x <= lb + k; ++x) { // cout << '[' << x << ',' << x + u << "] " << cost << '\n'; // REP(i, n) { // if (a[i] < x) { // cout << (x - a[i] + k - 1) / k; // } else if (x <= a[i] && a[i] <= x + u) { // cout << 0; // } else { // cout << (a[i] - (x + u) + k - 1) / k; // } // cout << " \n"[i + 1 == n]; // } chmin(ans, cost); cost += add_l[x % k]; if (const auto it = mp.find(x); it != mp.end()) { cost += it->second; add_l[x % k] += it->second; } cost -= add_r[(x + u + 1) % k]; if (const auto it = mp.find(x + u + 1); it != mp.end()) { add_r[(x + u + 1) % k] -= it->second; } } cout << ans << '\n'; return 0; }