제출 #654755

#제출 시각아이디문제언어결과실행 시간메모리
654755gun_ganSelf Study (JOI22_ho_t2)C++17
54 / 100
432 ms5016 KiB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
 
int main() {
      cin.tie(0); ios_base::sync_with_stdio(0);
 
      ll n, m;
      cin >> n >> m;
 
      vector<ll> a(n), b(n);
      for(int i = 0; i < n; i++) cin >> a[i];
      for(int i = 0; i < n; i++) cin >> b[i];
      for(int i = 0; i < n; i++) a[i] = max(a[i], b[i]);
 
      auto ok = [&](ll x) -> bool {
            ll left = 0;
            for(int i = 0; i < n; i++) {
                  ll z = (x + a[i] - 1) / a[i];
                  if(z < m) {
                        left += m - z; 
                  } else {
                        left -= (x - a[i] * m + b[i] - 1) / b[i];
                  }
 
                  if(-left > n * m) return 0;
                  if(left / n > x) return 1;
            }
 
            return left >= 0;
      };
 
      ll l = 0, r = 2e18, ans = 0;
      while(l <= r) {
            ll mid = (l + r) / 2;
            if(ok(mid)) {
                  l = mid + 1, ans = mid;
            } else {
                  r = mid - 1;
            }
      }
 
      cout << ans << '\n';
 
}
#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...