F. Leha and security system
 

Bankopolis, the city you already know, finally got a new bank opened! Unfortunately, its security system is not yet working fine... Meanwhile hacker Leha arrived in Bankopolis and decided to test the system!

Bank has n cells for clients' money. A sequence from n numbers a1, a2, ..., an describes the amount of money each client has. Leha wants to make requests to the database of the bank, finding out the total amount of money on some subsegments of the sequence and changing values of the sequence on some subsegments. Using a bug in the system, Leha can requests two types of queries to the database:

  • 1 l r x y denoting that Leha changes each digit x to digit y in each element of sequence ai, for which l ≤ i ≤ r is holds. For example, if we change in number 11984381 digit 8 to 4, we get 11944341. It's worth noting that Leha, in order to stay in the shadow, never changes digits in the database to 0, i.e. y ≠ 0.
  • 2 l r denoting that Leha asks to calculate and print the sum of such elements of sequence ai, for which l ≤ i ≤ r holds.

As Leha is a white-hat hacker, he don't want to test this vulnerability on a real database. You are to write a similar database for Leha to test.

Input

The first line of input contains two integers n and q (1 ≤ n ≤ 105, 1 ≤ q ≤ 105) denoting amount of cells in the bank and total amount of queries respectively.

The following line contains n integers a1, a2, ..., an (1 ≤ ai < 109) denoting the amount of money in each cell initially. These integers do not contain leading zeros.

Each of the following q lines has one of the formats:

  • 1 l r x y (1 ≤ l ≤ r ≤ n, 0 ≤ x ≤ 9, 1 ≤ y ≤ 9), denoting Leha asks to change each digit x on digit y for each element ai of the sequence for which l ≤ i ≤ r holds;
  • 2 l r (1 ≤ l ≤ r ≤ n), denoting you have to calculate and print the sum of elements ai for which l ≤ i ≤ r holds.
Output

For each second type query print a single number denoting the required sum.

Examples
input
5 5
38 43 4 12 70
1 1 3 4 8
2 2 4
1 4 5 0 8
1 2 5 8 7
2 1 5
output
103
207
 
Note

Let's look at the example testcase.

Initially the sequence is [38, 43, 4, 12, 70].

After the first change each digit equal to 4 becomes 8 for each element with index in interval [1; 3]. Thus, the new sequence is [38, 83, 8, 12, 70].

The answer for the first sum's query is the sum in the interval [2; 4], which equal 83 + 8 + 12 = 103, so the answer to this query is 103.

The sequence becomes [38, 83, 8, 12, 78] after the second change and [38, 73, 7, 12, 77] after the third.

The answer for the second sum's query is 38 + 73 + 7 + 12 + 77 = 207.

题意:

  给你n个数

  操作1:l r x y,区间[l,r]内所有数,数位上为x的都转化为y

  操作2: l r 求区间和

题解:

  线段树区间合并

  建立10颗线段树,分别表示数字0~9所代表的值

  将x转化为y也就是在将第x颗线段树区间[l,r]和减去,加到第y颗线段树上

  这里的延时操作有点小技巧

  每次push_down的时候保持每个点(0~9)指向唯一的另外一个点,这样再更新的时候才不会超时

#include<bits/stdc++.h>
using namespace std;
#pragma comment(linker, "/STACK:102400000,102400000")
#define ls i<<1
#define rs ls | 1
#define mid ((ll+rr)>>1)
#define pii pair<int,int>
#define MP make_pair
typedef long long LL;
const long long INF = 1e18+1LL;
const double Pi = acos(-1.0);
const int N = 5e5+, M = 1e3+, mod = 1e9+,inf = 2e9; LL sum[N][],H[N],a[N],sum2[];
int lazy[N][],vis[]; void push_down(int i,int ll,int rr) {
if(ll == rr) return ; for(int j = ; j < ; ++j) vis[j] = lazy[ls][j], sum2[j] = sum[ls][j];
for(int j = ; j < ; ++j) {
if(lazy[i][j] != j) {
for(int k = ; k < ; ++k) {
if(lazy[ls][k] == j) vis[k] = lazy[i][j];
}
sum2[lazy[i][j]] += sum[ls][j]; sum2[j] -= sum[ls][j];
}
}
for(int j = ; j < ; ++j)
lazy[ls][j] = vis[j], sum[ls][j] = sum2[j]; for(int j = ; j < ; ++j) vis[j] = lazy[rs][j], sum2[j] = sum[rs][j];
for(int j = ; j < ; ++j) {
if(lazy[i][j] != j) {
for(int k = ; k < ; ++k) {
if(lazy[rs][k] == j) vis[k] = lazy[i][j];
}sum2[lazy[i][j]] += sum[rs][j]; sum2[j] -= sum[rs][j];
}
}
for(int j = ; j < ; ++j)
lazy[rs][j] = vis[j], sum[rs][j] = sum2[j]; for(int j = ; j < ; ++j) lazy[i][j] = j;
} void push_up(int i,int ll,int rr) {
for(int j = ; j <= ; ++j) {
sum[i][j] = sum[ls][j] + sum[rs][j];
}
} void build(int i,int ll,int rr) { for(int j = ; j < ; ++j) lazy[i][j] = j; if(ll == rr) {
for(int j = ; j < ; ++j) sum[i][j] =;
LL tmp = a[ll];
for(int j = ; j <= ; ++j) {
sum[i][tmp%] += H[j-];
tmp/=;
if(tmp == ) break;
}
return ;
} build(ls,ll,mid); build(rs,mid+,rr);
push_up(i,ll,rr);
} void update(int i,int ll,int rr,int x,int y,int f,int s) { push_down(i,ll,rr);
if(ll == x && rr == y) {
for(int j = ; j <= ; ++j)
if(lazy[i][j] == f) {
lazy[i][j] = s;
sum[i][s] += sum[i][f];
sum[i][f] = ;
}
return ;
}
if(y <= mid) update(ls,ll,mid,x,y,f,s);
else if(x > mid) update(rs,mid+,rr,x,y,f,s);
else { update(ls,ll,mid,x,mid,f,s);
update(rs,mid+,rr,mid+,y,f,s); } push_up(i,ll,rr); } LL query(int i,int ll,int rr,int x,int y) {
push_down(i,ll,rr);
if(ll == x && rr == y) {
LL ret = ;
for(int j = ; j <= ; ++j) {
ret += 1LL*j*sum[i][j];
}
return ret;
}
if(y <= mid) return query(ls,ll,mid,x,y);
else if(x > mid) return query(rs,mid+,rr,x,y);
else {
return query(ls,ll,mid,x,mid)+query(rs,mid+,rr,mid+,y);
}
push_up(i,ll,rr); } int n,q; int main() { scanf("%d%d",&n,&q); for(int i = ; i <= n; ++i) {
scanf("%I64d",&a[i]);
} H[] = ;
for(int i = ; i <= ; ++i) H[i] = H[i-]*; build(,,n); for(int i = ; i <= q; ++i) {
int op,x,y,l,r;
scanf("%d",&op);
if(op == ) {
scanf("%d%d%d%d",&l,&r,&x,&y);
if(x == y) continue;
update(,,n,l,r,x,y);
}
else {
scanf("%d%d",&l,&r);
printf("%I64d\n",query(,,n,l,r));
}
} return ;
}

最新文章

  1. [LeetCode] Swap Nodes in Pairs 成对交换节点
  2. 在 C# 中执行 msi 安装
  3. 【分享】SQL中的注入漏洞
  4. POJ 1015 Jury Compromise 2个月后重做,其实这是背包题目
  5. Chrome浏览器插件推荐大全
  6. raft 一致性算法
  7. 【转】qlv文件如何转换成mp4 怎样把下载好的qlv格式视频转换成MP4格式
  8. 开启IIS的WebGarden、WebFarm和StateServer之旅
  9. [Swift]LeetCode812. 最大三角形面积 | Largest Triangle Area
  10. 提升node.js中使用redis的性能
  11. 从高德采集最新的省市区三级坐标和行政区域边界,用js在浏览器中运行
  12. i3wm 入门
  13. 千兆以太网TCP协议的FPGA实现
  14. Markdown语法学习(Github/git.oschina.net上README.md书写规范)(转)
  15. ReSharper2017.3的列对齐、排版格式、列对齐错误的修复
  16. Eclipse-Java EE
  17. Windows环境下执行hadoop命令出现Error: JAVA_HOME is incorrectly set Please update D:\SoftWare\hadoop-2.6.0\conf\hadoop-env.cmd错误的解决办法(图文详解)
  18. Android6.0 org.apache.http.util.EncodingUtils等相关类被移除(转)
  19. java容器详细解析(转)
  20. php的session存放数组

热门文章

  1. keepalived安装脚本
  2. NYOJ-116士兵杀敌(二),树状数组~~
  3. numpy模块
  4. [转]genymotion Unable to load VirtualBox engine 某种解决办法
  5. Toad Oracle 本地/远程数据库导入/导出 数据库备份
  6. [NOIP2003] 提高组 洛谷P1041 传染病控制
  7. Piggy-Bank--hdu1114(完全背包)
  8. [洛谷U22158]策划体验(树上斜率优化)(二分最优决策)
  9. vmware下centos6.7网络配置
  10. xml文件的schema也是经过jdk编译器编译的,如果xsd没引入完整,而xml中又用到了这些标签,就会编译不通过啊。