Maximum Product UVA - 11059(枚举入门)

Given a sequence of integers

S

=

f

S

1

;S

2

;:::;S

n

g

, you should determine what is the value of the

maximum positive product involving consecutive terms of

S

. If you cannot nd a positive sequence,

you should consider 0 as the value of the maximum product.

Input

Each test case starts with 1

N

18, the number of elements in a sequence. Each element

S

i

is

an integer such that

 

这道题只需要枚举起点到终点的连续序列就行。但是有个坑点:当m初始化为-11时,m<=0时要输出0,千万不能把=号忽略了(m代表输出的结果);只不过有一个解决办法,就是m初始化的时候直接m=0.

#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <sstream>
#include <cmath>
#include <queue>
using namespace std;
const int maxn = 100005;
int a[maxn];

int main()
{
    int n,kase = 1;
    while(cin>>n){
        long long t = 1,m = -11;
        memset(a,0,sizeof(a));
        for(int i = 0;i < n;i++)
            cin>>a[i];
        for(int i = 0;i < n;i++){
            for(int j = i;j < n;j++){
                for(int k = i;k <= j;k++){
                    t *= a[k];
                }
                //cout<<"t: "<<t<<endl;
                if(t > m) m = t;
                t = 1;
            }
        }
        cout<<"Case #"<<kase++<<": The maximum product is ";
        if(m <= 0) cout<<0<<"."<<endl;
        else
            cout<<m<<"."<<endl;
        cout<<endl;
    }
    return 0;
}

 

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-08 10:39
一个证都没&nbsp;我能填什么
程序员小白条:别人有,你为什么没有,还是这个道理,社会就是比较,竞争,淘汰,你要安逸,那么就要做好淘汰的准备
点赞 评论 收藏
分享
frutiger:逆天,我家就安阳的,这hr咋能说3k的,你送外卖不比这工资高得多?还说大厂来的6k,打发叫花子的呢?这hr是怎么做到说昧良心的话的
找工作时遇到的神仙HR
点赞 评论 收藏
分享
07-07 14:30
复旦大学 Java
遇到这种人我也不知道说啥了
无能的丈夫:但我觉得这个hr语气没什么问题啊(没有恶意
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务