博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最大乘积(暴力)
阅读量:6426 次
发布时间:2019-06-23

本文共 1869 字,大约阅读时间需要 6 分钟。

Description

Given a sequence of integers S = {S1, S2, . . . , Sn}, you should determine what is the value of themaximum positive product involving consecutive terms of S. If you cannot find 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 Si is an integer such that −10 ≤ Si ≤ 10. Next line will have N integers, representing the value of each element in the sequence. There is a blank line after each test case. The input is terminated by end of file (EOF).

Output

For each test case you must print the message: ‘Case #M: The maximum product is P.’, where M is the number of the test case, starting from 1, and P is the value of the maximum product. After each test case you must print a blank line.

Sample Input

3
2 4 -3
5
2 5 -1 2 -1

Sample Output

Case #1: The maximum product is 8.
Case #2: The maximum product is 20.

题意:

输入n个元素组成的序列S,你需要找出一个乘积最大的连续子序列。如果这个最大的乘积不是正数,应输出0(表示无解)。1 ≤ N ≤ 18,−10 ≤ Si ≤ 10。

 

分析:

1.连续子序列有两个要素:起点和终点,只要枚举起点和终点即可。

2.每个元素的绝对值不超过10且不超过18个元素,最大可能的乘积不会超过10^18。

3.最大可能超过 int 的范围,可用 long long 进行存储。

4.每个案例用空格隔开。

 

代码:

1 #include
2 #include
3 using namespace std; 4 5 int main() 6 { 7 int n,a[20]; 8 int i,j; 9 int M=0;10 while(scanf("%d",&n)!=EOF)11 {12 long long P=0;//最大乘积13 for(i=0;i
P)22 P=mid_ans;23 }24 }25 M++;26 if(P>0)27 printf("Case #%d: The maximum product is %lld.\n\n",M,P);28 else 29 printf("Case #%d: The maximum product is 0.\n\n",M);30 }31 return 0;32 }

 

心得:

long long 类型在VC里不能编译成功,在VC里应用_int64 类型。后来用code::blocks编译通过了。观察几个提交的程序发现其实有些不必要的语句可以省略,这样可以使程序更简化,更清晰易懂。

 

转载于:https://www.cnblogs.com/ttmj865/p/4686328.html

你可能感兴趣的文章
table固定行和表头
查看>>
<每天读一点职场心理学>读书笔记
查看>>
Android权限大全代码
查看>>
android 判断SIM卡是哪个运营商
查看>>
删除N天前的M(天)个目录 、删除N天前最后修改的文件 ForFiles, dos command 批处理命令cmd/bat...
查看>>
十进制数1~n中1出现的次数
查看>>
PostgreSQL 的 语法分析的理解(五)
查看>>
[转载]Visual Studio 2010敏捷利剑:详解Scrum
查看>>
Java Collection: List、Set、 Map、 HashMap、 Hashtable、 Vector
查看>>
T-SQL查询进阶--流程控制语句
查看>>
Excel VBA小试
查看>>
备份Toad中保存的数据库连接用户名和密码
查看>>
ASP.NET中 Repeater 的使用前台绑定
查看>>
微信公众平台模拟群发技术
查看>>
C语言学习之指针详解
查看>>
学习使用Bing Maps Silverlight Control(一):准备和新建
查看>>
讲一讲什么叫阻塞非阻塞同步异步
查看>>
选择器补遗
查看>>
C# 实体集合和实体转换成相应的string、XDocument、XElement、XDocument
查看>>
轻松记住大端小端的含义(附对大端和小端的解释)
查看>>