zoukankan      html  css  js  c++  java
  • *cf.4 贪心

    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 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.

    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.

    题意:

    给出N个长方体,如果有两个长方体有两条边对应相等,即两个面的面积相同就可以把两个长方体粘起来,最多两个相粘,问最后那个或那两个可以有的最大内切球;

    代码:

     1 //排序;普通的暴力会超时。后来看了别人的代码。神奇。
     2 //把每个长方体三条边从小到大排一下存入,以每个长方体最大的那条边从小到大排序如下。这样两个最大值和次大值对应相等的面必然相邻
     3 //这样每次比较相邻的两个就好了。如果最小的和第二大的对应相等怎么办如:(2 3 4),(1 2 5),(2 3 6),输入数据的时候就排除了,就算合起来还是2,3 小边。 
     4 #include<iostream>
     5 #include<cstdio>
     6 #include<cstring>
     7 #include<algorithm>
     8 using namespace std;
     9 int n,flag1,flag2;
    10 struct cub
    11 {
    12     int a,b,c,ra;
    13 }cu[100005];
    14 bool cmp(cub x,cub y)           //排序
    15 {
    16     if(x.a==y.a&&x.b==y.b) return x.c<y.c;
    17     if(x.a==y.a) return x.b<y.b;
    18     return x.a<y.a;
    19 }
    20 int main()
    21 {
    22     int x,y,z;
    23     while(scanf("%d",&n)!=EOF)
    24     {
    25         int ans=0;
    26         for(int i=1;i<=n;i++)
    27         {
    28             scanf("%d%d%d",&x,&y,&z);
    29             int xx=max(x,max(y,z)),zz=min(x,min(y,z)),yy=x+y+z-xx-zz;
    30             cu[i].a=xx;
    31             cu[i].b=yy;
    32             cu[i].c=zz;
    33             cu[i].ra=i;
    34             if(zz>ans)
    35             {
    36                 ans=zz;
    37                 flag1=i;
    38                 flag2=0;
    39             }
    40         }
    41         sort(cu+1,cu+1+n,cmp);
    42         for(int i=2;i<=n;i++)
    43         {
    44             if(cu[i].a==cu[i-1].a&&cu[i].b==cu[i-1].b)
    45             {
    46                 int Min=min(cu[i].c+cu[i-1].c,min(cu[i].a,cu[i].b));
    47                 if(Min>ans)
    48                 {
    49                     ans=Min;
    50                     flag1=cu[i].ra;
    51                     flag2=cu[i-1].ra;
    52                 }
    53             }
    54         }
    55         if(flag2==0) printf("1
    %d
    ",flag1);
    56         else printf("2
    %d %d
    ",min(flag1,flag2),max(flag1,flag2));
    57     }
    58     return 0;
    59 }
  • 相关阅读:
    normalize.css介绍和使用,normalize与CSS Reset的区别
    解决在Windows10没有修改hosts文件权限
    定时器
    常见代码题
    BFC与margin重叠
    清除浮动的方法以及优缺点
    面向对象的理解
    左边固定右边自适应
    正则
    《STL源码剖析》——第一、二、三章
  • 原文地址:https://www.cnblogs.com/--ZHIYUAN/p/6018821.html
Copyright © 2011-2022 走看看