比赛 20110723 评测结果 WWWWWTWE
题目名称 儿童节快乐 最终得分 0
用户昵称 belong.zmx 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-07-23 11:04:52
显示代码纯文本
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cmath>

using namespace std;

int i,j;
int a[10001];
int k,l;
int m,n,max1,o,mark;
char pp;

int main()
{
	freopen("happya.in","r",stdin);
	freopen("happya.out","w",stdout);
	scanf("%d%d",&n,&m);
	for (i=1;i<=m;i++)
	{
		scanf("%c",&pp);
		if (pp='\n') scanf("%c",&pp);
		if (pp=='I')
		{
			scanf("%d%d%d",&k,&l,&o);
			for (j=k;j<=l;j++) a[j]=a[j]+o;
		}
		else
		{
			max1=0;
			scanf("%d%d",&k,&l);
			for (j=k;j<=l;j++)
			{
				if (max1<a[j]) 
				{
					max1=a[j];
					mark=j;
				}
			}
			printf("%d\n",max1);
			a[mark]=0;			
		}
	}
	return 0;
}