Kostya the Sculptor Codeforces Round#378-D(逻辑+排序)

D. Kostya the Sculptor
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Kostya is a genial sculptor, he has an idea: to carve a marble sculpture in the shape of a sphere. Kostya has a friend Zahar who works at a career. Zahar knows about Kostya's idea and wants to present him a rectangular parallelepiped of marble from which he can carve the sphere.

Zahar has n stones which are rectangular parallelepipeds. The edges sizes of the i-th of them are aibi andci. He can take no more than two stones and present them to Kostya.

If Zahar takes two stones, he should glue them together on one of the faces in order to get a new piece of rectangular parallelepiped of marble. Thus, it is possible to glue a pair of stones together if and only if two faces on which they are glued together match as rectangles. In such gluing it is allowed to rotate and flip the stones in any way.

Help Zahar choose such a present so that Kostya can carve a sphere of the maximum possible volume and present it to Zahar.

Input

The first line contains the integer n (1 ≤ n ≤ 105).

n lines follow, in the i-th of which there are three integers ai, bi and ci (1 ≤ ai, bi, ci ≤ 109) — the lengths of edges of the i-th stone. Note, that two stones may have exactly the same sizes, but they still will be considered two different stones.

Output

In the first line print k (1 ≤ k ≤ 2) the number of stones which Zahar has chosen. In the second line print kdistinct integers from 1 to n — the numbers of stones which Zahar needs to choose. Consider that stones are numbered from 1 to n in the order as they are given in the input data.

You can print the stones in arbitrary order. If there are several answers print any of them.

Examples
input
6
5 5 5
3 2 4
1 4 1
2 1 3
3 2 4
3 3 4
output
1
1
input
7
10 7 8
5 10 3
4 2 6
5 5 5
10 2 8
4 2 1
7 7 7
output
2
1 5
Note

In the first example we can connect the pairs of stones:

  • 2 and 4, the size of the parallelepiped: 3 × 2 × 5, the radius of the inscribed sphere 1
  • 2 and 5, the size of the parallelepiped: 3 × 2 × 8 or 6 × 2 × 4 or 3 × 4 × 4, the radius of the inscribed sphere 1, or 1, or 1.5 respectively.
  • 2 and 6, the size of the parallelepiped: 3 × 5 × 4, the radius of the inscribed sphere 1.5
  • 4 and 5, the size of the parallelepiped: 3 × 2 × 5, the radius of the inscribed sphere 1
  • 5 and 6, the size of the parallelepiped: 3 × 4 × 5, the radius of the inscribed sphere 1.5

Or take only one stone:

  • 1 the size of the parallelepiped: 5 × 5 × 5, the radius of the inscribed sphere 2.5
  • 2 the size of the parallelepiped: 3 × 2 × 4, the radius of the inscribed sphere 1
  • 3 the size of the parallelepiped: 1 × 4 × 1, the radius of the inscribed sphere 0.5
  • 4 the size of the parallelepiped: 2 × 1 × 3, the radius of the inscribed sphere 0.5
  • 5 the size of the parallelepiped: 3 × 2 × 4, the radius of the inscribed sphere 1
  • 6 the size of the parallelepiped: 3 × 3 × 4, the radius of the inscribed sphere 1.5

It is most profitable to take only the first stone.

详细题解见:https://jacklightchen.github.io/blog/2016/11/01/Kostya-the-Sculptor-Codeforces-Round-378-D-逻辑-排序/

//package D;
import java.io.*;
import java.util.*;
public class Main {
static class Stone implements Comparable<Stone>{
	int a,b,c,position;
	Stone(int a,int b,int c,int d){
		this.a=a;
		this.b=b;
		this.c=c;
		this.position=d;
	}
	Stone(){
		
	}
	@Override
	public int compareTo(Stone s) {
		if(this.c<s.c)
			return -1;
		else if(this.c>s.c)
			return 1;
		else if(this.b<s.b)
			return -1;
		else if(this.b>s.b)
			return 1;
		else if(this.a<s.a)
			return -1;
		else if(this.a>s.a)
			return 1;
		else
			return 0;
	}
}
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int max=-1;
			int index=0;
			Stone []s=new Stone[n];
			int flag=0;
			int jg1=0;
			int jg2=0;
			int shu[]=new int[3];
			for(int i=0;i<n;i++){
				shu[0]=sc.nextInt();
				shu[1]=sc.nextInt();
				shu[2]=sc.nextInt();
				Arrays.sort(shu);
				s[i]=new Stone(shu[0],shu[1],shu[2],i+1);
				if(max<shu[0]){
					index=i+1;
					max=shu[0];
				}
			}
			Arrays.sort(s);
			for(int i=0;i<n-1;i++){
				if(s[i].b==s[i+1].b&&s[i].c==s[i+1].c){
					int[] bj=new int [3];
					bj[0]=s[i].a+s[i+1].a;
					bj[1]=s[i].b;
					bj[2]=s[i].c;
					Arrays.sort(bj);
					if(bj[0]>max){
						flag=1;
						max=bj[0];
						jg1=s[i].position;
						jg2=s[i+1].position;
					}
				}
			}
			if(flag==1){
				System.out.println(2);
				System.out.println(jg1+" "+jg2);
			}
			else
			{
				System.out.println(1);
				System.out.println(index);
			}
		}

	}

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值