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;
#define ll long long
#define ln '\n'
const int N = 3e5 + 5;
const ll INF = 5e18 + 5;
ll n, m, a[N], b[N];
inline ll ceil(ll x, ll y) {return (x + y - 1) / y;}
ll cnt(ll go_lesson, ll i, ll tar){
return (m - go_lesson) - max(0LL, ceil(tar - a[i] * go_lesson, b[i]));
}
void solve(){
cin >> n >> m;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < n; i++) cin >> b[i];
ll best = INF;
for (int i = 0; i < n; i++) best = min(best, max(a[i], b[i]));
cout << best << ln;
// ll l = 7, r = 7, ans = 0;
// ll l = 0, r = INF, ans = 0;
// while (l <= r){
// ll tar = (l + r) / 2;
// ll diff = 0; // diff = free - need
// for (int i = 0; i < n; i++){
// diff += max(cnt(1, i, tar), cnt(0, i, tar));
// }
// if (diff >= 0) {ans = tar; l = tar + 1;}
// else r = tar - 1;
// }
// cout << ans << ln;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// int TT; cin >> TT;
// while (TT--) {solve();}
solve();
}
# | 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... |