QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#260709 | #6632. Minimize Median | ucup-team1198# | WA | 66ms | 3600kb | C++20 | 1.5kb | 2023-11-22 14:25:04 | 2023-11-22 14:25:05 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define ld long double
#define all(a) (a).begin(), (a).end()
void solve() {
int n, m, k;
cin >> n >> m >> k;
vector<int> A(n);
for (int i = 0; i < n; ++i)
cin >> A[i];
sort(A.begin(), A.end());
vector<int> cost(m + 1);
for (int i = 1; i <= m; ++i)
cin >> cost[i];
vector<int> suff_min(m + 1);
suff_min[m] = cost[m];
for (int i = m - 1; i >= 1; --i)
suff_min[i] = min(suff_min[i + 1], cost[i]);
vector<int> real_cost(m + 1, 1e9 + 228);
real_cost[1] = 0;
for (int i = 1; i <= m; ++i) {
int x = 1;
for (; i * x <= m; ++x) {
real_cost[i * x] = min(real_cost[i * x], real_cost[i] + cost[x]);
}
if (x <= m)
real_cost[m] = min(real_cost[m], real_cost[i] + suff_min[x]);
}
for (int i = m - 1; i >= 1; --i)
real_cost[i] = min(real_cost[i], real_cost[i + 1]);
int left = 0, right = m;
while (right - left > 1) {
int mid = (left + right) / 2;
long long need = 0;
for (int i = 0; i < (n + 1) / 2; ++i) {
if (A[i] > mid)
need += real_cost[(A[i] + mid - 1) / mid];
}
if (need > k)
left = mid;
else
right = mid;
}
cout << right << '\n';
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
while (t--) {
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3600kb
input:
3 3 5 0 2 5 2 3 2 4 6 13 3 5 3 2 5 3 3 2 4 6 13 3 5 6 2 5 2 3 2 4 6 13
output:
2 2 1
result:
ok 3 number(s): "2 2 1"
Test #2:
score: -100
Wrong Answer
time: 66ms
memory: 3496kb
input:
100000 5 10 5 3 7 1 10 10 11 6 11 6 1 8 9 1 3 1 5 6 51 2 2 2 5 1 42 61 26 59 100 54 5 10 76 7 5 8 4 7 97 4 44 83 61 45 24 88 44 44 5 8 90 1 1 5 1 3 35 15 53 97 71 83 26 7 5 3 52 1 1 3 1 1 22 6 93 5 6 28 6 6 1 3 1 9 31 2 19 10 27 5 8 31 3 6 2 1 2 32 29 13 7 57 34 9 5 5 6 75 3 3 4 5 4 40 56 38 60 17 3...
output:
1 2 1 1 1 1 1 1 3 4 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 2 1 1 1 2 2 1 1 1 1 1 1 1 1 2 4 1 1 1 1 2 1 1 7 1 2 1 1 1 1 1 1 1 1 1 1 1 2 1 1 6 3 1 1 1 1 2 1 1 3 1 1 1 1 1 2 1 1 1 1 1 2 2 4 1 1 1 1 1 1 1 2 2 1 2 2 1 1 1 1 1 1 1 1 1 2 1 4 1 1 4 1 2 1 1 1 1 1 1 2 1 1 1 2 3 1 1 1 1 1 1 1 5 1 1 2 1 2 1 1 ...
result:
wrong answer 1st numbers differ - expected: '0', found: '1'