You are given set of n points in 5-dimensional space. The points are labeled from 1 to n. No two points coincide.

We will call point a bad if there are different points b and c, not equal to a, from the given set such that angle between vectors  and is acute (i.e. strictly less than ). Otherwise, the point is called good.

The angle between vectors  and  in 5-dimensional space is defined as , where  is the scalar product and  is length of .

Given the list of points, print the indices of the good points in ascending order.

Input

The first line of input contains a single integer n (1 ≤ n ≤ 103) — the number of points.

The next n lines of input contain five integers ai, bi, ci, di, ei (|ai|, |bi|, |ci|, |di|, |ei| ≤ 103)  — the coordinates of the i-th point. All points are distinct.

Output

First, print a single integer k — the number of good points.

Then, print k integers, each on their own line — the indices of the good points in ascending order.

Examples
input
6
0 0 0 0 0
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 1
output
1
1
input
3
0 0 1 2 0
0 0 9 2 0
0 0 5 9 0
output
0
Note

In the first sample, the first point forms exactly a  angle with all other pairs of points, so it is good.

In the second sample, along the cd plane, we can see the points look as follows:

We can see that all angles here are acute, so no points are good.

题意:坏点:一个点和它周围的点形成的角度有一个小于90,问有多少好点,五维的环境下哦

解法:

1 二维的环境下 一个点周围是4个点,三维的环境下,一个点周围是6个点,那么..五维的环境应该是10个点,包括本身是11点,超过11点都不算

2 然后暴力计算

#include<bits/stdc++.h>
using namespace std;
int x[][];
int y[][];
int n;
vector<int>Ve;
int main(){
cin>>n;
for(int i=;i<=n;i++){
for(int j=;j<=;j++){
cin>>x[i][j];
}
}
if(n>=){
cout<<""<<endl;
return ;
}
for(int i=;i<=n;i++){
memset(y,,sizeof(y));
int flag=;
for(int j=;j<=n;j++){
if(i==j) continue;
for(int k=;k<=;k++){
y[j][k]=x[j][k]-x[i][k];
// cout<<y[j][k]<<"A"<<endl;
}
for(int k=;k<j;k++){
int sum=;
if(k==i) continue;
for(int l=;l<=;l++){
sum+=y[k][l]*y[j][l];
}
if(sum>){
flag=;
break;
}
}
if(flag){
break;
} }
if(flag==){
Ve.push_back(i);
}
}
int Size=Ve.size();
cout<<Size<<endl;
for(int i=;i<Size;i++){
cout<<Ve[i]<<endl;
}
return ;
}

最新文章

  1. mysql 写入优化
  2. python调用其他程序或脚本方法(转)
  3. 【MySQL】 GTID使用
  4. python 购物车和三级菜单
  5. [转]UOS 中的虚拟网络设备
  6. 将PL/SQL代码封装在机灵的包中
  7. Lintcode--006(交叉字符串)
  8. matlab GUI之自定义菜单小结
  9. 游戏开发常用JS
  10. hdu4081
  11. 下载旧版chrome
  12. cocos2d-x高级学习
  13. 《响应式Web设计实践》学习笔记
  14. jquery mobile Touch事件
  15. 卷积在深度学习中的作用(转自http://timdettmers.com/2015/03/26/convolution-deep-learning/)
  16. CF1039E Summer Oenothera Exhibition 贪心、根号分治、倍增、ST表
  17. python接口自动化测试十二:对返回的json的简单操作
  18. spring 框架的优点
  19. python selenium 模拟登陆百度账号
  20. 「下载神器」aria2 懒人安装教程 [Windows]

热门文章

  1. c macro pair
  2. 如何运行jnlp文件
  3. ACM学习历程—HDU 2112 HDU Today(map &amp;&amp; spfa &amp;&amp; 优先队列)
  4. 解决mongodb查询慢的问题
  5. 洛谷P1474货币系统——背包方案计数
  6. IOS深入学习
  7. nodejs链接mysql
  8. 在Spring环境下存取properties文件…
  9. Fran&amp;ccedil;ois&amp;nbsp;Hollande’s&amp;amp;…
  10. There&amp;nbsp;is&amp;nbsp;no&amp;nbsp;resul…