Codeforces Round #378 (Div. 2) D. Kostya the Sculptor(STL运用)

来源:互联网 发布:湖北大学知行学院后街 编辑:程序博客网 时间:2024/06/01 07:21

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 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
65 5 53 2 41 4 12 1 33 2 43 3 4
output
11
input
710 7 85 10 34 2 65 5 510 2 84 2 17 7 7
output
21 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.5respectively.
  • 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.




题解:

这题其实没什么好说的,我开始想用map存,不过怕太慢会被卡掉,后来写了几个cmp进行sort,瞎搞了一发,只过了pretest,后来还是wa了,队友说他们用map能过,刚刚写了发map存,就过了。


#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>#include<vector>#include<map>using namespace std;#define rep(i,a,n) for (int i=a;i<n;i++)#define per(i,a,n) for (int i=n-1;i>=a;i--)#define pb push_back#define fi first#define se secondtypedef vector<int> VI;typedef long long ll;typedef pair<int,int> PII;const ll mod=1000000007;const int MAXN=1e5+100;struct node{int a,b,c;}m[MAXN];map<PII,PII> mp;int ans=0,pos=0,pos1=0;int flag;void add(int a,int b,int c,int i){if(mp.find(PII(a,b))==mp.end())mp[PII(a,b)]=make_pair(c,i);else{PII f=mp[PII(a,b)];int t=f.first;int tmp=min(min(a,b),t+c);if(tmp>ans) pos=i,pos1=f.second,ans=tmp,flag=2;if(t<c) mp[make_pair(a,b)]=make_pair(c,i);}}int main(){int n;scanf("%d",&n);rep(i,1,n+1){int a[4];scanf("%d%d%d",&a[1],&a[2],&a[3]);sort(a+1,a+4);int t=min(a[1],min(a[2],a[3]));if(t>ans) ans=t,pos=i,flag=1;add(a[1],a[2],a[3],i);add(a[2],a[3],a[1],i);add(a[1],a[3],a[2],i);}printf("%d\n",flag);if(flag==1)printf("%d\n",pos);else {if(pos>pos1) swap(pos,pos1);printf("%d %d",pos,pos1);}return 0;}

0 0
原创粉丝点击