Wunder Fund Round 2016 (Div. 1 + Div. 2 combined)-C. Constellation(贪心+向量平行判断)

C. Constellation
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Cat Noku has obtained a map of the night sky. On this map, he found a constellation with n stars numbered from 1 to n. For each i, thei-th star is located at coordinates (xi, yi). No two stars are located at the same position.

In the evening Noku is going to take a look at the night sky. He would like to find three distinct stars and form a triangle. The triangle must have positive area. In addition, all other stars must lie strictly outside of this triangle. He is having trouble finding the answer and would like your help. Your job is to find the indices of three stars that would form a triangle that satisfies all the conditions.

It is guaranteed that there is no line such that all stars lie on that line. It can be proven that if the previous condition is satisfied, there exists a solution to this problem.

Input

The first line of the input contains a single integer n (3 ≤ n ≤ 100 000).

Each of the next n lines contains two integers xi and yi ( - 109 ≤ xi, yi ≤ 109).

It is guaranteed that no two stars lie at the same point, and there does not exist a line such that all stars lie on that line.

Output

Print three distinct integers on a single line — the indices of the three points that form a triangle that satisfies the conditions stated in the problem.

If there are multiple possible answers, you may print any of them.

Sample test(s)
input
3
0 1
1 0
1 1
output
1 2 3
input
5
0 0
0 2
2 0
2 2
1 1
output
1 3 5
Note

In the first sample, we can print the three indices in any order.

In the second sample, we have the following picture.

Note that the triangle formed by starts 14 and 3 doesn't satisfy the conditions stated in the problem, as point 5 is not strictly outside of this triangle (it lies on it's border).

思路:

  这个题目其实就是判断是否三个点共线就能做出来了。


AC代码:


#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<cstdio>
#include<cmath>
#include<ctime>
#include<cstdlib>
#include<queue>
#include<vector>
#include<set>
using namespace std;
const int T=100050;
#define inf 0x3f3f3f3fL
#define mod 1000000000
typedef long long ll;
typedef unsigned long long LL;


struct node
{
	int x,y;
	int num;
}a[T];

bool cmp(const node& a,const node& b)
{
	return a.x<b.x||(a.x==b.x&&a.y<b.y);
}

ll _(const node& a,node& b)//平行
{
	return (ll)a.x*b.y-(ll)a.y*b.x;
}

int main()
{
#ifdef zsc 
	freopen("input.txt","r",stdin); 
#endif

	int n,m,i,j,k;
	while(~scanf("%d",&n))
	{
		for(i=0;i<n;++i){
			scanf("%d%d",&a[i].x,&a[i].y);
			a[i].num = i+1;
		}
		sort(a,a+n,cmp);
		for(i=0;i<n-2;++i){
			if(_(a[i],a[i+1])+_(a[i+1],a[i+2])+_(a[i+2],a[i])){
		      printf("%d %d %d\n",a[i].num,a[i+1].num,a[i+2].num);
			  break;
			}
		}
	}
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值