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;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
long long n, m;
cin >> n >> m;
vector<long long> a(n);
for(auto &x : a) cin >> x;
vector<long long> b(n);
for(auto &x : b) cin >> x;
for(int i = 0; i < n; i++) a[i] = max(a[i], b[i]);
auto check = [&](long long val){
long long cnt = 0;
for(int i = 0; i < n; i++){
if(a[i]*m >= val) cnt += ((val - 1)/a[i] + 1);
else cnt += (m + (val - m*a[i] -1)/b[i] + 1);
}
if(cnt <= m*n) return true;
else return false;
};
long long l = 0, r = 2e18;
while(l != r){
long long mid = (l+r)/2;
if(check(mid)) l = mid+1;
else r = mid;
}
cout << r-1 << '\n';
return 0;
}
# | 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... |