# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4068 | ainta | Jogging (kriii1_J) | C++98 | 92 ms | 3656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
#include<algorithm>
#include<math.h>
#define INF 1e9
using namespace std;
struct point{
int x,y;
bool operator <(const point &p)const{
return x<p.x;
}
}w[100001];
int X[100001],n,m,i,st[100001],top;
double Res[100001];
double F(int a,int b){
if(w[a].y>=w[b].y)return -INF;
double A=w[a].y;
A=A*(w[b].x-w[a].x);
A=A/(w[b].y-w[a].y);
A=w[a].x-A;
return A;
}
int main()
{
scanf("%d%d",&n,&m);
for(i=0;i<n;i++){
scanf("%d%d",&w[i].x,&w[i].y);
}
sort(w,w+n);
for(i=0;i<m;i++)scanf("%d",&X[i]);
int pv=m-1;
for(i=n-1;i>=-1;i--){
while(i==-1 || X[pv]>=w[i].x){
while(top>1 && F(st[top],st[top-1])>=X[pv])top--;
if(top==0)Res[pv]=0;
else{
Res[pv]=atan2(w[st[top]].y,w[st[top]].x-X[pv]);
}
pv--;
if(pv<0)break;
}
if(pv<0)break;
while(top>1 && F(i,st[top-1])<=F(st[top],st[top]-1))top--;
if(!top || F(i,st[top])<X[pv])st[++top]=i;
}
for(i=0;i<m;i++)printf("%.7lf\n",Res[i]);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |