码迷,mamicode.com
首页 > 其他好文 > 详细

hihocoder offer收割编程练习赛12 D 寻找最大值

时间:2017-04-02 15:49:51      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:name   out   iostream   main   for   stream   off   sort   ret   

思路:

可能数据太水了,随便乱搞就过了。

实现:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 using namespace std;
 5 typedef long long ll;
 6 
 7 int a[100005], n;
 8 
 9 int main()
10 {
11     int t;
12     cin >> t;
13     while (t--)
14     {
15         ll maxn = 0;
16         cin >> n;
17         for (int i = 0; i < n; i++)
18         {
19             cin >> a[i];
20         }
21         sort(a, a + n);
22         for (int i = 1; i < n; i++)
23         {
24             maxn = max(maxn, (ll)a[i] * a[i - 1] * (a[i] & a[i - 1]));
25         }
26         cout << maxn << endl;
27     }
28     return 0;
29 }

 

hihocoder offer收割编程练习赛12 D 寻找最大值

标签:name   out   iostream   main   for   stream   off   sort   ret   

原文地址:http://www.cnblogs.com/wangyiming/p/6659084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!