QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#728497 | #5137. Tower | yixuanoct# | WA | 6ms | 3760kb | C++20 | 1.1kb | 2024-11-09 15:17:27 | 2024-11-09 15:17:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve() {
ll n, m;cin >> n >> m;
vector<ll> a(n + 3);
map<ll, ll> mp;
ll ans = 1e18;
for (ll i = 1; i <= n; i++) cin >> a[i];
auto check = [&](ll x) {
vector<ll> op(n + 3);
for (ll i = 1; i <= n; i++) {
ll res = 0;
if (a[i] < x) res += x - a[i];
else {
ll tmp = 0, t = a[i];
while (t / 2 >= x) t /= 2, tmp++;
tmp += min(t - x, x - (t / 2));
res += tmp;
}
op[i] = res;
}
sort(op.begin() + 1, op.begin() + n + 1);
ll q = 0;
for (ll i = 1; i <= n - m; i++) q += op[i];
ans = min(ans, q);
};
for (ll i = 1; i <= n; i++) {
ll x = a[i];
while (x) {
if (mp[x]) break;
mp[x] = 1;
check(x);
x /= 2;
}
}
cout << ans << endl;
}
int main() {
ll t;cin >> t;
while (t--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3760kb
input:
3 2 0 2 6 5 0 1 2 3 4 5 5 3 1 2 3 4 5
output:
2 4 1
result:
ok 3 number(s): "2 4 1"
Test #2:
score: -100
Wrong Answer
time: 6ms
memory: 3604kb
input:
10 272 118 11 14 49 94 71 62 46 45 74 22 15 36 7 37 27 35 96 85 75 78 76 64 23 59 17 35 71 28 96 82 5 66 2 48 57 31 88 10 61 73 79 23 19 52 39 76 48 98 5 39 48 51 90 90 60 27 47 24 24 56 48 27 39 21 38 18 20 9 62 83 47 15 51 22 73 74 7 80 64 60 86 74 59 7 84 38 99 31 42 60 52 41 63 88 59 90 77 40 68...
output:
399 3 380 90 493 570 886 202 589 45
result:
wrong answer 1st numbers differ - expected: '454', found: '399'