QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#313905 | #7730. Convex Checker | Hqwq | WA | 1ms | 3880kb | C++14 | 1.6kb | 2024-01-25 09:56:49 | 2024-01-25 09:56:50 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n,cnt=0;
struct point{
int x,y;
}p[200010],v[200010],q[200010];
bool cmp(point x,point y){
if (x.x!=y.x) return x.x<y.x;
return x.y<y.y;
}
bool check(point x,point y,point z){
int a,b,c,d;
a=y.x-x.x;
b=y.y-x.y;
c=z.x-x.x;
d=z.y-x.y;
if (a*d-b*c>0) return 1;
return 0;
}
void tb(){
v[++cnt]=p[1];
v[++cnt]=p[2];
for (int i=3;i<=n;i++){
while(!check(v[cnt-1],v[cnt],p[i]) && cnt>1){
cnt--;
}
v[++cnt]=p[i];
}
int temp=cnt;
v[++cnt]=p[n-1];
for (int i=n-2;i>=1;i--){
while(!check(v[cnt-1],v[cnt],p[i]) && cnt>temp){
cnt--;
}
v[++cnt]=p[i];
}
cnt--;
}
int main(){
scanf("%d",&n);
for (int i=1;i<=n;i++){
int x,y;
scanf("%d %d",&p[i].x,&p[i].y);
q[i]=p[i];
}
//sort(p+1,p+1+n,cmp);
tb();
int pp=1;
if (cnt!=n) pp=0;
// else {
// int p1=1,p2=1;
// int i=1,j;
// for (i=1;i<=n;i++) if (q[1].x==v[i].x && q[1].y==v[i].y) break;
// j=1;
// while(j<=n){
// if (v[i].x!=q[j].x || v[i].y!=q[j].y){
// p1=0;
// break;
// }
// i=i%n+1;
// j=j+1;
// }
// for (i=1;i<=n;i++) if (q[1].x==v[i].x && q[1].y==v[i].y) break;
// j=1;
// while(j<=n){
// if (v[i].x!=q[j].x || v[i].y!=q[j].y){
// p2=0;
// break;
// }
// i=i-1;
// if (i<=0) i+=n;
// j=j+1;
// }
// pp=p1|p2;
// }
if (pp) printf("Yes\n");
else printf("No\n");
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3736kb
input:
3 0 0 1 0 0 1
output:
Yes
result:
ok answer is YES
Test #2:
score: 0
Accepted
time: 0ms
memory: 3876kb
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: 3880kb
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: 3804kb
input:
3 0 0 0 0 0 0
output:
No
result:
ok answer is NO
Test #5:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
5 1 0 4 1 0 1 2 0 3 2
output:
No
result:
ok answer is NO
Test #6:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
5 0 0 1000000000 0 1000000000 500000000 1000000000 1000000000 0 1000000000
output:
No
result:
ok answer is NO
Test #7:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
5 0 0 1000000000 0 1000000000 499999999 1000000000 1000000000 0 1000000000
output:
No
result:
ok answer is NO
Test #8:
score: -100
Wrong Answer
time: 0ms
memory: 3796kb
input:
5 0 0 999999999 0 1000000000 50000000 999999999 1000000000 0 1000000000
output:
No
result:
wrong answer expected YES, found NO