# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
3961 | zzapcoder | Jogging (kriii1_J) | C++98 | 1000 ms | 4980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
using namespace std;
class CRD{
public:
CRD(int _x, int _y)
: x(_x), y(_y)
{ }
int x,y;
};
std::vector<int> REST;
std::vector<CRD> STAR;
int N;
int M;
bool compareZZ(const CRD& A, const CRD& B)
{
if ( A.x < B.x )
return true;
else
return false;
}
int main()
{
scanf("%d%d",&N,&M);
for (int i = 0 ; i < N ; i++)
{
int tmpX, tmpY;
scanf("%d%d", &tmpX, &tmpY);
STAR.push_back( CRD(tmpX, tmpY) );
}
std::sort(STAR.begin(), STAR.end(), compareZZ);
for ( int i = 0 ; i < M ; i++)
{
int tmpX;
scanf("%d", &tmpX);
REST.push_back(tmpX);
}
for ( int i = 0 ; i < M ; i ++)
{
int pos = REST[i];
std::vector<CRD> STARTMP;
for ( int j = 0 ; j < N ; j++)
{
if ( pos < STAR[j].x )
STARTMP.push_back(STAR[j]);
}
if ( STARTMP.size() == 0 )
{
printf("0.0000000\n");
continue;
}
double tmpMax = STARTMP[0].y/(STARTMP[0].x - (double)pos );
for ( int j = 1 ; j < STARTMP.size() ; j++)
{
if ( tmpMax < (STARTMP[j].y/(STARTMP[j].x - (double)pos)) )
tmpMax = (STARTMP[j].y/(STARTMP[j].x - (double)pos));
}
// printf("pos: %d, tan : %.7lf\n", pos, tmpMax);
double Result = atan(tmpMax);
printf("%.7lf\n", Result);
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |