比赛 数据结构练习 评测结果 AAAAAAAAAA
题目名称 单子序列最大和 最终得分 100
用户昵称 Regnig Etalsnart 运行时间 0.005 s
代码语言 C++ 内存使用 0.06 MiB
提交时间 2017-07-25 19:23:12
显示代码纯文本
#include<cstdio>
#define syy myson
using namespace std;
const int INF=0x7fffffff;
int n,l=1,temp=1,r=1,sum,ans=-INF,i;
int Main()
{
	freopen("subq.in","r",stdin);freopen("subq.out","w",stdout);
	scanf("%d",&n);
	for(i=1;i<=n;i++)
	{
		int x;
		scanf("%d",&x);
		sum+=x;
		if(sum>ans)
		{
			ans=sum;
			l=temp;
			r=i;
		}
		if(sum<0)
		{
			sum=0;
			temp=i+1;
		}
	}
	printf("%d\n%d\n%d\n",l,r,ans); 
	return 0;
}
int main(){;}
int syy=Main();