CodeForces - 552D Vanya and Triangles 물
Vanya and Triangles
Time Limit: 4000MS
Memory Limit: 524288KB
64bit IO Format: %I64d & %I64u
Submit Status
Description
Vanya got bored and he painted n distinct points on the plane. After that he connected all the points pairwise and saw that as a result many triangles were formed with vertices in the painted points. He asks you to count the number of the formed triangles with the non-zero area.
Input
The first line contains integer n (1 ≤ n ≤ 2000) — the number of the points painted on the plane.
Next n lines contain two integers each xi, yi ( - 100 ≤ xi, yi ≤ 100) — the coordinates of the i-th point. It is guaranteed that no two given points coincide.
Output
In the first line print an integer — the number of triangles with the non-zero area among the painted points.
Sample Input
Input
4
0 0
1 1
2 0
2 2
Output
3
Input
3
0 0
1 1
2 0
Output
1
Input
1
1 1
Output
0
Hint
Note to the first sample test. There are 3 triangles formed: (0, 0) - (1, 1) - (2, 0); (0, 0) - (2, 2) - (2, 0); (1, 1) - (2, 2) - (2, 0).
Note to the second sample test. There is 1 triangle formed: (0, 0) - (1, 1) - (2, 0).
Note to the third sample test. A single point doesn't form a single triangle.
Source
Codeforces Round #308 (Div. 2)
//제목:
점 n개 드릴게요. 삼각형 몇 개 만들 수 있냐고요?
//사고방식:
먼저 모든 상황을sum=C(n,3)로 구하고 구성할 수 없는 삼각형의 개수(3점이 한 직선에 있음)C(kk,3)를 찾아내면 상감하면 구하는 것이다.
kk를 구할 때 무거운 공식을 사용합니다: kk=(sqrt(1+8*cnt)+1)/2;모르면 직접 밀어보면 알 수 있다.
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
#include<iostream>
#define ll long long
#define N 2010
using namespace std;
struct zz
{
double x;
double y;
}p[N];
bool cmp1(zz a,zz b)
{
if(a.x==b.x)
return a.y<b.y;
return a.x<b.x;
}
struct ss
{
double k;
double b;
}pp[N*N];
bool cmp2(ss a,ss b)
{
if(a.k==b.k)
return a.b<b.b;
return a.k<b.k;
}
ll C(int x,int k)
{
int i,j;
ll s=1;
for(i=x,j=1;i>x-k;i--,j++)
s*=i,s/=j;
return s;
}
int main()
{
int n,i,j,k;
while(scanf("%d",&n)!=EOF)
{
for(i=0;i<n;i++)
scanf("%lf%lf",&p[i].x,&p[i].y);
sort(p,p+n,cmp1);
k=0;
double x,y;
for(i=0;i<n-1;i++)
{
for(j=i+1;j<n;j++)
{
x=(p[j].x-p[i].x);y=(p[j].y-p[i].y);
if(x==0)
{
pp[k].k=1000.0;
pp[k].b=p[j].x;
}
else
{
pp[k].k=y/x;
pp[k].b=p[i].y-pp[k].k*p[i].x;
}
k++;
}
}
sort(pp,pp+k,cmp2);
int cnt=1,kk;
ll num=C(n,3);
for(i=0;i<k;i++)
{
if(fabs(pp[i].k-pp[i+1].k)<=1e-7&&fabs(pp[i].b-pp[i+1].b)<=1e-7)
cnt++;
else
{
// printf("%d
",cnt);
kk=(sqrt(1+8*cnt)+1)/2;
num-=C(kk,3);
cnt=1;
}
}
printf("%lld
",num);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.