比赛 |
ZLXOI2015Day1 |
评测结果 |
AAAAAAAAAA |
题目名称 |
虐狗大赛 |
最终得分 |
100 |
用户昵称 |
devil |
运行时间 |
0.343 s |
代码语言 |
C++ |
内存使用 |
7.18 MiB |
提交时间 |
2015-10-29 09:38:02 |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=100010;
const int maxm=1010;
const int mod=1000000007;
struct node
{
int H,D;
int add;
int cnt;
} tree[4*maxn];
int h[maxn],d[maxn];
void build_tree(int l,int r,int dir)
{
if(l==r)
{
tree[dir].H=h[l];
tree[dir].D=d[l];
tree[dir].add=0;
tree[dir].cnt=0;
return;
}
int m=(l+r)>>1;
build_tree(l,m,dir*2);
build_tree(m+1,r,dir*2+1);
}
int query(int pos,int l,int r,int dir,int sum,int c)
{
if(l==r)
{
return tree[dir].H-(sum+tree[dir].add-(c+tree[dir].cnt)*tree[dir].D);
}
int m=(l+r)>>1;
if(pos<=m) return query(pos,l,m,dir*2,sum+tree[dir].add,c+tree[dir].cnt);
else return query(pos,m+1,r,dir*2+1,sum+tree[dir].add,c+tree[dir].cnt);
}
void Add(int al,int ar,int val,int l,int r,int dir)
{
if(al>r||ar<l) return;
if(al<=l&ar>=r)
{
tree[dir].add+=val;
tree[dir].cnt++;return;
}
int m=(l+r)>>1;
Add(al,ar,val,l,m,dir*2);
Add(al,ar,val,m+1,r,dir*2+1);
}
int main()
{
freopen("thebigmatch.in","r",stdin);
freopen("thebigmatch.out","w",stdout);
//clock_t st=clock();
int n;scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&h[i]);
for(int i=1;i<=n;i++) scanf("%d",&d[i]);
build_tree(1,n,1);
int q;scanf("%d",&q);
int k,a,b,c,ans;
while(q--)
{
scanf("%d",&k);
if(k==1)
{
for(int i=1;i<=n;i++)
{
ans=query(i,1,n,1,0,0);
printf("%d ",ans);
}
printf("\n");
}
else
{
scanf("%d%d%d",&a,&b,&c);
Add(a,b,c,1,n,1);
}
}
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}