QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#279256 | #7730. Convex Checker | PhantomThreshold | WA | 0ms | 4152kb | C++20 | 1.3kb | 2023-12-08 14:44:27 | 2023-12-08 14:44:29 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long db;
struct point
{
db x,y;
point operator+(const point &p)const{return {x+p.x,y+p.y};}
point operator-(const point &p)const{return {x-p.x,y-p.y};}
db operator*(const point &p)const{return x*p.y-y*p.x;}
db operator^(const point &p)const{return x*p.x+y*p.y;}
point turn90()const{return (point){-y,x};}
db abs2()const{return x*x+y*y;}
bool operator<(const point &p)const{/*int pu=getP(),pv=p.getP();if(pu!=pv)return pu<=pv;*/return *this*p>0;}
friend istream& operator>>(istream &is,point &p){is>>p.x>>p.y;return is;}
friend ostream& operator<<(ostream &os,const point &p){os<<p.x<<' '<<p.y;return os;}
};
const double pi=acos(-1.),eps=1e-6;
int main()
{
ios_base::sync_with_stdio(false);
int n;
cin>>n;
vector<point> a(n+5);
for(int i=1;i<=n;i++)
{
cin>>a[i];
}
double turn=0.;
for(int i=1;i<=n;i++)
{
turn+=atan2((a[i%n+1]-a[i])*(a[(i+1)%n+1]-a[i%n+1]),(a[i%n+1]-a[i])^(a[(i+1)%n+1]-a[i%n+1]));
}
if(turn<0)
{
turn=-turn;
reverse(a.begin()+1,a.begin()+n+1);
}
if(abs(turn-2*pi)>eps)
{
cout<<"No\n";
return 0;
}
for(int i=1;i<=n;i++)
{
if(atan2((a[i%n+1]-a[i])*(a[(i+1)%n+1]-a[i%n+1]),(a[i%n+1]-a[i])^(a[(i+1)%n+1]-a[i%n+1]))<0)
{
cout<<"No\n";
return 0;
}
}
cout<<"Yes\n";
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3940kb
input:
3 0 0 1 0 0 1
output:
Yes
result:
ok answer is YES
Test #2:
score: 0
Accepted
time: 0ms
memory: 3832kb
input:
4 0 0 0 1 1 1 1 0
output:
Yes
result:
ok answer is YES
Test #3:
score: 0
Accepted
time: 0ms
memory: 3936kb
input:
4 0 0 0 3 1 2 1 1
output:
Yes
result:
ok answer is YES
Test #4:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
3 0 0 0 0 0 0
output:
No
result:
ok answer is NO
Test #5:
score: 0
Accepted
time: 0ms
memory: 4152kb
input:
5 1 0 4 1 0 1 2 0 3 2
output:
No
result:
ok answer is NO
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 3772kb
input:
5 0 0 1000000000 0 1000000000 500000000 1000000000 1000000000 0 1000000000
output:
Yes
result:
wrong answer expected NO, found YES