이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
"TLE is like the wind, always by my side"
- Yasuo - 2022 -
*/
#include <bits/stdc++.h>
#define debug(x) cerr << #x << " " << x << "\n"
#define debugs(x) cerr << #x << " " << x << " "
#pragma GCC optimize("Ofast")
#define int long long
using namespace std;
int n,m,i,j,mid,l,r,pas,ansy;
int a[300005];
int b[300005];
int courseneed(int val, int course, int study)
{
int ans;
ans=0;
if (course*m<val)
{
ans+=m;
val-=course*m;
if (val%study==0)
ans+=val/study;
else
ans+=val/study+1;
}
else
{
if (val%course==0)
ans+=val/course;
else
ans+=val/course+1;
}
return ans;
}
bool possible(int minimum)
{
int sum;
sum=0;
for (i=1;i<=n;i++)
{
sum+=courseneed(minimum,a[i],b[i]);
}
if (sum<=n*m)
return 1;
return 0;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for (i=1;i<=n;i++)
{
cin >> a[i];
}
for (i=1;i<=n;i++)
{
cin >> b[i];
}
for (i=1;i<=n;i++)
{
a[i]=max(a[i],b[i]);
}
l=0;
r=(1LL<<60);
while (l<=r)
{
mid=l+(r-l)/2;
if (possible(mid))
{
ansy=mid;
l=mid+1;
}
else
r=mid-1;
}
cout << ansy;
}
# | 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... |