-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrange_update_point_query.cpp
57 lines (55 loc) · 1.17 KB
/
range_update_point_query.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <bits/stdc++.h>
using namespace std;
int sumer(int a)
{
int count=0;
while(a>0)
{
count += a%10;
a = a/10;
}
return count;
}
int main()
{
int cases;
cin>>cases;
for(int p=0; p<cases; p++)
{
int n, k;cin>>n>>k;
vector<int> v;
set<int> s;
// set<int>ss;
for(int i=0; i<n; i++)
{
int x; cin>>x;
v.push_back(x);
if(x>9) s.insert(i);
}
for(int j=0; j<k; j++)
{
int nm; cin>>nm;
if(nm==1)
{
int a,b;cin>>a>>b;
a--; b--;
int lst = a;
while(!s.empty())
{
auto itr = s.lower_bound(lst);
if(itr == s.end() || *itr > b) break;
v[*itr] = sumer(v[*itr]);
int temp = *itr;
if(v[*itr]<=9) itr = s.erase(itr);
lst = temp+1;
}
}
else
{
int a; cin>>a;
a--;
cout<<v[a]<<endl;
}
}
}
}