记录编号 200786 评测结果 AAAAAAAAAA
题目名称 [ZLXOI 2015][异次元圣战I]虐狗大赛 最终得分 100
用户昵称 Gravatar1azyReaper 是否通过 通过
代码语言 C++ 运行时间 0.694 s
提交时间 2015-10-29 14:59:13 内存使用 1.07 MiB
显示代码纯文本
#include <fstream>
#include <algorithm>
#include <cstdio>
#define ifs ifstream
#define ofs ofstream
#define MAX 100006
using namespace std;
ifs fin("thebigmatch.in");
ofs fout("thebigmatch.out");
int h[MAX],d[MAX];
int n;
int read()
{
	fin>>n;
	for(int i=1;i<=n;i++)
		fin>>h[i];
	for(int i=1;i<=n;i++)
		fin>>d[i];
	return 0;
}
int work()
{
	int q;
	int a,b,c,e;
	fin>>q;
	for(int k=1;k<=q;k++)
	{
		
		fin>>a;
		//fout<<a<<' ';
		if(a==0)
		{
			//fin>>a>>b>>c;
			fin>>b>>c>>e;
			for(int i=b;i<=c;i++)
			{
				h[i]-=(e-d[i]);
			}
		}
		if(a==1)
		{
			for(int i=1;i<=n;i++)
				fout<<h[i]<<' ';
			fout<<endl;
		}
	}
	return 0;
}
int main()
{
	read();
	work();
	return 0;
}