제출 #681464

#제출 시각아이디문제언어결과실행 시간메모리
681464sudheerays123Self Study (JOI22_ho_t2)C++17
100 / 100
247 ms10820 KiB
#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long int
const ll N = 3e5+5 , INF = 1e18 , MOD = 1e9+7;

vector<ll> a(N),b(N);
ll n,m;

bool check(ll x){

	ll cnt = 0;

	for(ll i = 1; i <= n; i++){
		ll maxi = max(a[i],b[i]);
		if(maxi*m < x){
			cnt += m;
			ll cur = x-(maxi*m);
			cnt += ((cur+b[i]-1)/b[i]);
		}
		else cnt += ((x+maxi-1)/maxi);
		
		if(cnt > (n*m)) return false;
	}

	return (cnt <= (n*m));
}

void solve(){

	cin >> n >> m;
	for(ll i = 1; i <= n; i++) cin >> a[i];
	for(ll i = 1; i <= n; i++) cin >> b[i];

	ll low = 1 , high = 1e18;
	ll ans;

	while(low <= high){
		ll mid = (low+high)/2;

		if(check(mid)){
			ans = mid;
			low = mid+1;
		}
		else high = mid-1;
	}

	cout << ans;
}

int main(){

	fast;

	ll tc = 1;
	// cin >> tc;
	while(tc--) solve();

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...