Maximum Product UVA - 11059(水题)
闲得无聊刷到水题,但还是错了0.0
第一点注意的每个输出后面都有空行
第二点要用long long
第三点mx初值为0
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define inf 0x3f3f3f3f
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rep1(i,a,b) for(int i=a;i>=b;i--)
#define rson rt<<1|1,m+1,r
#define lson rt<<1,l,m
using namespace std;
const int N=100;
ll arr[N];
int n;
int main()
{
//ios::sync_with_stdio(false);
int n;
ll kase=0;
while(cin>>n)
{
rep(i,0,n)
cin>>arr[i];
ll mx=0;
for(int i=0;i<n;i++)
{
ll temp=arr[i];
mx=max(mx,temp);
for(int j=i-1;j>=0;j--)
{
temp*=arr[j];
mx=max(temp,mx);
}
}
cout<<"Case #"<<++kase<<": The maximum product is "<<mx<<"."<<endl;
cout<<endl;
}
return 0;
}