emmmm
|
|
此题有3个巨坑!!!!!
1、数据是`实数`!!! 2、要用文件操作!!!(我交了2次过了,第一次就死在了文件……) 3、输出保留到整数!!!
题目 1 加法问题
2018-10-26 19:58:40
|
|
题目 1 加法问题
2018-10-12 11:31:31
|
|
|
|
#include <iostream>
#include <cstdio> #include <vector> #include <algorithm> #include <string.h> using namespace std; int n,m; int t[100005]={0}; class node{ public: int z,r; long long sum; }tr[500001]; void build(int root,int z,int r){ tr[root].sum=t[r]-t[z-1]; tr[root].z=z; tr[root].r=r; if(z==r){ return; } int mid=(z+r)/2; build(root*2,z,mid); build(root*2+1,mid+1,r); } int ask(int root,int z,int r){ if(tr[root].z==z && tr[root].r==r){ return tr[root].sum; } int mid=(tr[root].z+tr[root].r)/2; if(r<=mid){ return ask(root*2,z,r); } if(z>mid){ return ask(root*2+1,z,r); } return ask(root*2,z,mid) + ask(root*2+1,mid+1,r); } void add(int root,int x,int y){ tr[root].sum+=y; if(tr[root].z==tr[root].r){ return; } int mid=(tr[root].z+tr[root].r)/2; if(x<=mid){ add(root*2,x,y); } if(x>mid){ add(root*2+1,x,y); } } int main(){ freopen("shulie.in","r",stdin); freopen("shulie.out","w",stdout); int x,y; char p[5]; scanf("%d",&n); t[0]=0; for(int a=1;a<=n;++a){ scanf("%d",&x); t[a]=t[a-1]+x; } build(1,1,n); scanf("%d",&m); for(int a=1;a<=m;++a){ scanf("%s%d%d",&p,&x,&y); if(p[0]=='S'){ printf("%d\n",ask(1,x,y)); } else{ add(1,x,y); } } return 0; }
题目 1 加法问题
2018-09-21 21:22:00
|
|
题目 1 加法问题
2018-09-19 19:49:57
|
|
#include <cstdio>//已过留念
using namespace std; int main() { double a,b; freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); while(scanf("%lf%lf",&a,&b)!=EOF) { double c = a+b; printf("%.0lf\n",c); } fclose(stdin); fclose(stdout); return 0; }
题目 1 加法问题
2018-09-18 14:02:32
|
|
挤一下,谁知道怎么换头像
题目 1 加法问题
2018-09-16 22:22:39
|
|
#include<iostream>
#include<cstdio> #include<cmath> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); float a,b,aa,bb,aaa,bbb; int m,n; scanf("%f %f",&a,&b); aa=floor(a); bb=floor(b); aaa=a-aa; bbb=b-bb; if(aaa+bbb>=1) n=1; else n=0; m=(int)aa+(int)bb+n; printf("%d",m); return 0; } 第四个过不了啊
题目 1 加法问题
2018-09-12 17:42:45
|
|
诡异
题目 1 加法问题
2018-09-09 08:02:15
|
|
题目 1 加法问题
2018-09-07 20:26:14
|
|
通过:2333
.......
题目 1 加法问题
2018-08-31 21:01:09
|
|
2333通过次数归我了,啊哈哈哈哈啊哈哈
题目 1 加法问题
2018-08-31 21:01:06
|
|
回复 @ 1s :
已举....举.....举.....举.....举高高
题目 1 加法问题
2018-07-25 12:00:20
|
|
暑假在家寂寞了吧?
劲 爽 视 频 尽在 www.bilibili.com
题目 1 加法问题
2018-07-23 14:47:17
|
|
退役选手的忧伤
题目 1 加法问题
2018-07-22 10:31:58
|
|
200楼归我啦哈哈哈哈哈
题目 1 加法问题
2018-07-09 11:21:30
|
|
m
题目 1 加法问题
2018-07-09 11:21:10
|
|
。
题目 1 加法问题
2018-07-09 11:20:58
|
|
。
题目 1 加法问题
2018-07-09 11:20:43
|