比赛 |
ZLXOI2015Day1 |
评测结果 |
AAAAAAAAAA |
题目名称 |
虐狗大赛 |
最终得分 |
100 |
用户昵称 |
NVIDIA |
运行时间 |
0.736 s |
代码语言 |
C++ |
内存使用 |
1.08 MiB |
提交时间 |
2015-10-29 10:17:25 |
显示代码纯文本
#include<cmath>
#include<iostream>
#include<cstdio>
using namespace std;
int i,j,a[100010],b[100010],p,n,q,e,f,g;
int main()
{
ios::sync_with_stdio(false);
freopen("thebigmatch.in","r",stdin);
freopen("thebigmatch.out","w",stdout);
cin>>n;
for(i=1;i<=n;i++)cin>>a[i];
for(i=1;i<=n;i++)cin>>b[i];
cin>>q;
for(i=1;i<=q;i++){cin>>p;if(p==1){for(j=1;j<=n;j++)cout<<a[j]<<' ';cout<<endl;}
else{cin>>e>>f>>g;for(j=e;j<=f;j++)a[j]-=g-b[j];}}return 0;}