显示代码纯文本
#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;
}