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>
#define ft first
#define sd second
#define pb push_back
#define nl "\n"
#define int ll
typedef long long ll;
typedef long double ld;
using namespace std;
const int mod = 1e9 + 7;
const int N = 2000;
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int T = 1;
while(T--) {
int n, m;
cin >> n >> m;
int a[n + 1], b[n + 1], mn = 1e18, mx = 0;
for (int i = 1; i <= n; i++) {
cin >> a[i];
mn = min( mn, a[i] * m);
mx = max( mx, a[i] * m);
}
for (int i = 1; i <= n; i++) {
cin >> b[i];
}
if (m == 1) {
int l = 1e18;
for (int i = 1; i <= n; i++) {
l = min( l, max(a[i], b[i]));
}
cout << l << nl;
} else {
int l = mn, r = mx + 1;
int inf = 1e18;
while(l + 1 < r) {
int mid = (l + r) / 2;
int s = 0;
for (int i = 1; i <= n; i++) {
if (m >= (mid - 1) / a[i] + 1) {
//s += ((a[i] * m - mid) / a[i]);
s += (m - ((mid - 1) / a[i] + 1));
} else {
//s -= (mid - a[i] * m) / a[i];
s -= ((mid - 1) / a[i] + 1 - m);
}
if (abs(s) > inf) break;
}
if (s >= 0) {
l = mid;
} else {
r = mid;
}
}
cout << l << nl;
}
}
}
# | 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... |