# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
828162 | RaresFelix | Self Study (JOI22_ho_t2) | C++17 | 524 ms | 4976 KiB |
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;
using ll = long long;
const int MN = 300001;
const ll INF = 1e18 + 71;
ll n, m, A[MN], B[MN];
bool ok(ll val) {
if(!val) return 1;
ll nr_sar = 0;
for(int i = 1; i <= n; ++i) {
if((val - 1) / A[i] + 1 <= m) {
nr_sar += m - ((val - 1) / A[i] + 1);
} else {
nr_sar -= (val - m * A[i] - 1) / B[i] + 1;
}
}
return (nr_sar >= 0);
}
int main() {
cin >> n >> m;
for(int i = 1; i <= n; ++i) cin >> A[i];
for(int i = 1; i <= n; ++i) {
cin >> B[i];
if(A[i] < B[i]) A[i] = B[i];
}
ll st = 0, dr = INF, mij;
# | 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... |