codeforces 733D--Kostya the Sculptor

Description
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 ai, bi and ci. 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 k distinct 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.

Sample Input
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
Hint
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.

#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;

struct para
{
    int a,b,c;
    int num;
}p[100005];

bool cmp(para aa,para bb)
{
   if (aa.a==bb.a && aa.b==bb.b)
   {
       return aa.c < bb.c;
   }
   else if (aa.a == bb.a)
   {
       return aa.b < bb.b;
   }
   else
   {
       return aa.a < bb.a;
   }
}

int main()
{
    int n;
    int i,j;

    while (scanf ("%d",&n) != EOF)
    {
         int x,y,z;
         int maxn = 0;
         int t1,t2;
        for (i=1; i<=n; i++)
        {
            scanf ("%d%d%d",&x,&y,&z);

            int aa = max(max(x,y),z),cc = min(min(x,y),z),bb = x+y+z-aa-cc;
            p[i].a = aa;
            p[i].b = bb;
            p[i].c = cc;
            p[i].num = i;

            if (cc > maxn)
            {
                maxn = cc;
                t1 = i;
                t2 = 0;
            }
        }

        sort(p+1,p+1+n,cmp);
        int M;

        for (i=2; i<=n; i++)
        {
            if (p[i].a==p[i-1].a && p[i].b==p[i-1].b)
            {
                M = min(min(p[i].a,p[i].b),p[i].c+p[i-1].c);

                if (M > maxn)
                {
                    maxn = M;
                    t1 = p[i].num;
                    t2 = p[i-1].num;
                }
            }
        }

        if (!t2)
        {
            printf ("1\n%d\n",t1);
        }
        else
        {
            printf ("2\n%d %d\n",t1,t2);
        }
    }
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章