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 <stdio.h>
#include <algorithm>
#include <stack>
using namespace std;
typedef long long ll;
struct star{
ll xx,yy,dx,dy;
}input[30010];
int n,maxday,top;
struct nowstar{
ll x, y;
}now[30010],st[30010];
ll cross(ll a, ll b, ll c, ll d)
{
return a*d-b*c;
}
bool ccmp(nowstar A, nowstar B)
{
if(A.x==B.x) return A.y<B.y;
return A.x<B.x;
}
bool rcmp(nowstar A, nowstar B)
{
return cross(A.x-now[1].x,A.y-now[1].y,B.x-now[1].x,B.y-now[1].y)>0;
}
int f(int x){return ((x-1)%top)+1;}
ll dist(nowstar A, nowstar B)
{
return ((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y));
}
ll maxdis(int day)
{
int i,j;
top=0;
for(i=1;i<=n;i++)
{
now[i].x=input[i].xx+input[i].dx*(ll)day;
now[i].y=input[i].yy+input[i].dy*(ll)day;
}
sort(now+1,now+n+1,ccmp);
sort(now+2,now+n+1,rcmp);
st[++top]=now[1];
st[++top]=now[2];
for(i=3;i<=n;i++)
{
while(cross(st[top].x-st[top-1].x,st[top].y-st[top-1].y,now[i].x-st[top].x,now[i].y-st[top].y)<=0&&top>=2) top--;
st[++top]=now[i];
}
ll ret=0;
if(top==1) return 0;
if(top==2) return dist(st[1],st[2]);
for(i=1,j=2;i<=top;i++)
{
while(cross(st[f(i+1)].x-st[f(i)].x,st[f(i+1)].y-st[f(i)].y,st[f(j+1)].x-st[f(j)].x,st[f(j+1)].y-st[f(j)].y)>=0) j++;
ret=max(ret,dist(st[f(i)],st[f(j)]));
ret=max(ret,dist(st[f(i)],st[f(j+1)]));
}
return ret;
}
int main()
{
int i;
scanf("%d %d",&n, &maxday);
for(i=1;i<=n;i++)
{
scanf("%lld %lld %lld %lld", &input[i].xx, &input[i].yy, &input[i].dx, &input[i].dy);
}
maxdis(0);
int ci=100;
int l=0, r=maxday, x1, x2;
while(ci--)
{
x1=(2*l+r)/3;
x2=(2*r+l)/3;
if(maxdis(x1)>=maxdis(x2)) l=x1;
else r=x2;
}
ll ans1=maxdis(l),ans2=l;
for(i=l+1;i<=r;i++)
{
if(maxdis(i)<ans1)
{
ans1=maxdis(i);
ans2=i;
}
}
printf("%lld %lld", ans2,ans1);
}
Compilation message (stderr)
dist.cpp: In function 'int main()':
dist.cpp:63:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d",&n, &maxday);
~~~~~^~~~~~~~~~~~~~~~~~~~~
dist.cpp:66:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld %lld %lld %lld", &input[i].xx, &input[i].yy, &input[i].dx, &input[i].dy);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |