#include <bits/stdc++.h>
#define pb push_back
#define s second
#define f first
#define pii pair<int,int>
#define ll unsigned long long
#define int ll
using namespace std;
const int N = 3e5 + 3;
int a[N],b[N],n,m,cur[N];
bool check(int x){
int need=0,have=0;
for (int i = 1; i <= n; i++){
cur[i] = max(a[i],b[i]) * m;
if (cur[i] > x){
have += (cur[i] - x + max(a[i],b[i]) - 1) / max(a[i],b[i]);
}else if (cur[i] < x){
need += (x - cur[i] + b[i] - 1)/b[i];
}
}
if (need > n*m) return 0;
return (have >= need);
}
signed main (){
ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
cin>>n>>m;
for (int i = 1; i <= n; i++)
cin >> a[i];
for (int i = 1; i <= n; i++)
cin >> b[i];
int l = 0,r = 1e18,res=0;
while (l <= r){
int mid = (l + r)/2;
if (check(mid)){
res=mid;
l=mid+1;
}else{
r=mid-1;
}
}
cout<<res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Incorrect |
1 ms |
4444 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |