比赛 |
20161114 |
评测结果 |
EEEEEEEEEE |
题目名称 |
输出全靠花 |
最终得分 |
0 |
用户昵称 |
24193 |
运行时间 |
0.758 s |
代码语言 |
C++ |
内存使用 |
0.33 MiB |
提交时间 |
2016-11-14 11:49:06 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<queue>
using namespace std;
int n,i,j,k;
int ans=0;
struct hua{
int x,y,z,w;
}h[1001];
int pd(int a,int b,int c)//c是否在ab直线上
{
if((h[c].x-h[a].x)/(h[b].x-h[a].x)==(h[c].y-h[a].y)/(h[b].y-h[a].y)==(h[c].z-h[a].z)/(h[b].z-h[a].z)==(h[c].w-h[a].w)/(h[b].w-h[a].w))
return 0;
else return 1;
}
int main()
{
freopen("xumingshi.in","r",stdin);
freopen("xumingshi.out","w",stdout);
cin>>n;
for(i=0;i<n;i++)
{
cin>>h[i].x>>h[i].y>>h[i].z>>h[i].w;
}
for(i=0;i<n;i++)
{
for(j=i;j<n;j++)
{
for(k=j;k<n;k++)
{
if(pd(i,j,k)==0) ans++;
}
}
}
cout<<ans;
fclose(stdin);fclose(stdout);
return 0;
}