博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 5057 Argestes and Sequence
阅读量:7232 次
发布时间:2019-06-29

本文共 3146 字,大约阅读时间需要 10 分钟。

Argestes and Sequence

Time Limit: 5000/2500 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 511    Accepted Submission(s): 127


Problem Description
Argestes has a lot of hobbies and likes solving query problems especially. One day Argestes came up with such a problem. You are given a sequence a consisting of N nonnegative integers, a[1],a[2],...,a[n].Then there are M operation on the sequence.An operation can be one of the following:
S X Y: you should set the value of a[x] to y(in other words perform an assignment a[x]=y).
Q L R D P: among [L, R], L and R are the index of the sequence, how many numbers that the Dth digit of the numbers is P.
Note: The 1st digit of a number is the least significant digit.
 

Input
In the first line there is an integer T , indicates the number of test cases.
For each case, the first line contains two numbers N and M.The second line contains N integers, separated by space: a[1],a[2],...,a[n]—initial value of array elements.
Each of the next M lines begins with a character type.
If type==S,there will be two integers more in the line: X,Y.
If type==Q,there will be four integers more in the line: L R D P.
[Technical Specification]
1<=T<= 50
1<=N, M<=100000
0<=a[i]<=$2^{31}$ - 1
1<=X<=N
0<=Y<=$2^{31}$ - 1
1<=L<=R<=N
1<=D<=10
0<=P<=9
 

Output
For each operation Q, output a line contains the answer.
 

Sample Input
 
1 5 7 10 11 12 13 14 Q 1 5 2 1 Q 1 5 1 0 Q 1 5 1 1 Q 1 5 3 0 Q 1 5 3 1 S 1 100 Q 1 5 3 1
 

Sample Output
 
5 1 1 5 0 1
 

Source
 
题解:

       这道题有三种版本号的 题解,本来题目不难,就是限制空间:1.分块算法解决,2.离线树状数组,3.卡空间的树状数组

 

这里先介绍第一种算法:

       学习了一下分块算法,事实上还蛮简单的,就是将n组元素分成m组,每组合并成一块,查询时,仅仅要看元素在那几块,相加即可了。

#include 
#include
#include
#include
using namespace std;struct Block{ int nt[10][10];}block[400];int num[100010];int cal(int d){ int ans=1; for(int i=1;i<=d;i++) { ans*=10; } return ans;}int init(int n){ int s=(int)sqrt((double)n),t=0; int m=n/s+1; memset(block,0,sizeof(block)); for(int i=1;i<=n;i++) { scanf("%d",&num[i]); s=i/m;t=num[i]; for(int j=0;j<=9;j++) { block[s].nt[j][t%10]++; t/=10; } } return m;}void work(int k,int n,int m){ char s[2]; int l,r,d,p,tl,tr,td,tp,ans=0; while(m--) { scanf("%s",s); if(s[0]=='S') { scanf("%d%d",&d,&p); td=d;td/=k; for(int j=0;j<=9;j++) { block[td].nt[j][num[d]%10]--; num[d]/=10; } num[d]=p;tp=p; for(int j=0;j<=9;j++) { block[td].nt[j][tp%10]++; tp/=10; } } else { ans=0; scanf("%d%d%d%d",&l,&r,&d,&p); tl=l;tl/=k;tr=r;tr/=k;d--; td=cal(d); if(tl==tr) { for(int i=l;i<=r;i++) if(num[i]/td%10==p) { ans++; } printf("%d\n",ans); } else { for(int i=tl+1;i

以下还写一写离线处理的代码,随后跟上。

转载地址:http://xwpfm.baihongyu.com/

你可能感兴趣的文章
awk的数组的应用
查看>>
java----调用windows的DOS命令并回显/启动和关闭appium
查看>>
linux下配置ip地址四种方法(图文方法)转载
查看>>
Google Chrome 总提示flash插件过期,用命令行模式解决
查看>>
定位与坐标系算法
查看>>
化学绘图软件ChemDraw真的什么都能干!
查看>>
Python开发注意事项
查看>>
FUCKED-BUG之临时对象的生死
查看>>
【转】HTML5第一人称射击游戏发布
查看>>
centos配置私钥登录
查看>>
web本地存储-WebSQL
查看>>
ORACLE11g:No Dialect mapping for JDBC type: -9解决方案
查看>>
我的友情链接
查看>>
闲聊Ceph目前在中国的发展Ceph现状
查看>>
我的友情链接
查看>>
CACTI 95th模版导入 及95th模板下载
查看>>
请求头header里的contentType为application/json和capplition/x-www-form-urlencoded
查看>>
迁云的那些事
查看>>
jquery ui 和ext.js一些区别,欢迎给位指正批评
查看>>
clj-xmemcached: memcached client for clojure
查看>>