이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
ll n, m;
cin >> n >> m;
ll a[n + 1];
for(ll i = 1; i <= n; ++i){
cin >> a[i];
}
ll b[n + 1];
for(ll i = 1; i <= n; ++i){
cin >> b[i];
}
ll L = 0;
ll R = 100000000;
while(R - L > 1){
ll mid = (L + R) >> 1;
ll can = 0ll;
ll need = 0ll;
for(ll i = 1; i <= n; ++i){
ll cur = (mid / max(a[i], b[i]) );
if(mid % (max(a[i], b[i])) != 0) cur++;
if(cur < n){
can += (n - cur);
}
if(cur > n){
need += (cur - n);
}
}
if(need <= can){
L = mid;
}
else{
R = mid;
}
}
cout << L - 1ll << endl;
return 0;
// 1000 * 1000 | 33 ?
}
# | 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... |