# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
937984 | vjudge1 | Self Study (JOI22_ho_t2) | C++17 | 107 ms | 4628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
vector<pair<int,int>> v;
int n,m;
bool check(int mid){
int tot = 0;
for(auto x : v){
int mx = max(x.first,x.second);
int need = (mid+mx-1)/mx;
if(need >= m){
tot+=m;
tot+= (mid-mx*m + x.second-1)/x.second;
}
else tot+= need;
}
return tot <= n*m;
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin>>n>>m;
v.resize(n);
for(auto& x : v) cin>>x.first; for(auto& x : v) cin>>x.second;
int low = 0; int high = 1e18+5;
while(high > low+1){
int middle = (low+high)/2;
if(check(middle)) low = middle;
else high = middle;
}
cout<<low<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |