QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#213589 | #6632. Minimize Median | ucup-team228# | RE | 0ms | 0kb | C++20 | 1.8kb | 2023-10-14 15:02:25 | 2023-10-14 15:02:25 |
answer
#include <bits/stdc++.h>
using namespace std;
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
typedef long long ll;
typedef pair<int, int> pii;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
template<typename T>
std::ostream& operator << (std::ostream& os, const vector<T>& a) {
for (const T& x : a) {
os << x << ' ';
}
return os;
}
const int M = 1e6 + 6;
vector<int> divs[M];
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(all(a));
vector<int> cost(m + 1);
for (int i = 1; i <= m; ++i) {
cin >> cost[i];
}
cost[1] = 0;
for (int t = 0; t < 10; ++t) {
for (int i = 1; i <= m; ++i) {
for (int j : divs[i]) {
cost[i] = min(cost[i], cost[j] + cost[i / j]);
}
}
for (int i = m - 1; i >= 1; --i) {
cost[i] = min(cost[i], cost[i + 1]);
}
}
auto check = [&](int x) {
ll sum = 0;
for (int i = 0; i <= n / 2; ++i) {
int y = a[i] / x + 1;
sum += cost[y];
}
return sum <= k;
};
int low = 0, high = m + 1;
while (high - low > 1) {
int mid = (low + high) / 2;
if (check(mid)) {
high = mid;
} else {
low = mid;
}
}
cout << low << '\n';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
for (int i = 2; i <= M; ++i) {
for (int j = 2 * i; j <= M; ++j) {
divs[j].push_back(i);
}
}
int t;
cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Runtime Error
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