记录编号 |
168368 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Open10]数三角形 |
最终得分 |
100 |
用户昵称 |
cstdio |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.074 s |
提交时间 |
2015-07-03 21:18:18 |
内存使用 |
4.89 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
using namespace std;
typedef long long LL;
const int SIZEN=200010;
class Point{
public:
LL x,y;
double ang;
};
bool cmp(const Point &a,const Point &b){
return a.ang<b.ang;
}
LL cross(const Point &a,const Point &b){
return a.x*b.y-b.x*a.y;
}
int N;
Point P[SIZEN];
void work(void){
sort(P+1,P+1+N,cmp);
for(int i=1;i<=N;i++) P[N+i]=P[i];
LL ans=(LL)N*(N-1)*(N-2)/6;
for(int i=1,j=1;i<=N;i++){
while(j<i+N&&cross(P[i],P[j])>=0) j++;
LL k=j-i-1;
ans-=k*(k-1)/2;
}
printf("%lld\n",ans);
}
void read(void){
scanf("%d",&N);
for(int i=1;i<=N;i++){
scanf("%lld%lld",&P[i].x,&P[i].y);
P[i].ang=atan2(P[i].y+0.0,P[i].x+0.0);
}
}
int main(){
freopen("tricount.in","r",stdin);
freopen("tricount.out","w",stdout);
read();
work();
return 0;
}