# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
529437 | fhvirus | Self Study (JOI22_ho_t2) | C++17 | 498 ms | 5004 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll; typedef pair<int, int> pii;
#define pb emplace_back
#define AI(x) begin(x),end(x)
#define ff first
#define ss second
#ifdef OWO
#define debug(args...) LKJ("\033[0;32m[ " + string(#args) + " ]\033[0m", args)
template<class I> void LKJ(I&&x) { cerr << x << endl; }
template<class I, class...T> void LKJ(I&&x, T&&...t) { cerr << x << ", "; LKJ(t...); }
template<class I> void OI(I a, I b) { while (a < b) cerr << *a << " \n"[next(a) == b]; }
#else
#define debug(...) 0
#define OI(...) 0
#endif
signed main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
ll N, M; cin >> N >> M;
vector<ll> A(N), B(N);
for (ll &i: A) cin >> i;
for (ll &i: B) cin >> i;
ll ans = 0;
for (ll l = (1ll << 61); l > 0; l >>= 1) {
ll threshold = ans + l;
debug(threshold);
ll empty = (ll) N * M;
for (int i = 0; i < N; ++i) {
ll tmp = threshold;
if (A[i] >= B[i]) {
ll chooseA = (tmp + A[i] - 1) / A[i];
chooseA = min(chooseA, M);
tmp -= A[i] * chooseA;
empty -= chooseA;
debug(i, chooseA);
}
if (tmp > 0) {
ll chooseB = (tmp + B[i] - 1) / B[i];
debug(i, chooseB);
empty -= chooseB;
}
}
if (empty >= 0) ans = threshold;
}
cout << ans << '\n';
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |