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

UVa 11059 最大乘积

时间:2017-01-15 21:34:42      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:stream   include   amp   for   https   imu   题意   ret   nbsp   

https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2000

题意:找出乘积最大的连续子序列。

思路:这道题目我挺无语的,一直超时,也不知道是哪里出了问题,反正最后试来试去终于有种办法成功了。不过好像这道题目不需要考虑输出0的情况吧。

 1 #include<iostream>
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     int ans[20];
 7     int n;
 8     int kase = 0;
 9     while (cin>>n)
10     {
11         kase++;
12         for (int i = 0; i < n; i++)
13             cin >> ans[i];
14         long long max = 0;
15         long long sum;
16         for (int i = 0; i < n; i++)
17         {
18             sum = 1;
19             for (int j = i; j < n; j++)
20             {
21                 sum *= ans[j];
22                 if (sum>max)  max = sum;
23             }
24         }
25         cout << "Case #" << kase << ": The maximum product is " << max << ".\n\n";
26     }
27     return 0;
28 }

 

UVa 11059 最大乘积

标签:stream   include   amp   for   https   imu   题意   ret   nbsp   

原文地址:http://www.cnblogs.com/zyb993963526/p/6287790.html

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