比赛 ZLXOI2015Day1 评测结果 AAAAAAAAAA
题目名称 虐狗大赛 最终得分 100
用户昵称 小明 运行时间 0.731 s
代码语言 C++ 内存使用 0.93 MiB
提交时间 2015-10-29 10:05:17
显示代码纯文本
#include<stdio.h>
int main()
{
	freopen("thebigmatch.in","r",stdin);
	freopen("thebigmatch.out","w",stdout);
	int i,j,a[100010],b[100010],p,n,q,e,f,g;
	scanf("%d",&n);
	for(i=1;i<=n;i++)
		scanf("%d",&a[i]);
	for(i=1;i<=n;i++)
		scanf("%d",&b[i]);
	scanf("%d",&q);
	for(i=1;i<=q;i++)
	{	
		scanf("%d",&p);
		if(p==1)
		{	
			for(j=1;j<=n;j++)
				printf("%d",a[j]);
			printf("\n");
		}
		else
		{	
			scanf("%d%d%d",&e,&f,&g);
			for(j=e;j<=f;j++)
			a[j]-=g-b[j];
		}
	}
	return 0;
}