-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRange Updates and Sums2.cpp
148 lines (141 loc) · 3.78 KB
/
Range Updates and Sums2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
//BISMILLAHIR RAHMANIR RAHEEM
//ALLAH IS WATCHING ME
// Shoeb Akibul Islam
// Dept of ICE, NSTU
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii= pair<ll,ll>;
const int N=200005;
ll mod= 1e9+7;
//ll a[N];
//template <typename T>
//struct st{
// #define lc (n<<1)
// #define rc ((n<<1)+1)
//
// vector<T> t, lazy, subs;
//
// st(T n){
// t.resize(4*n, 0);
// lazy.resize(4*n, 0);
// subs.resize(4*n, 0);
// }
// inline void push(int n, int b, int e){ //change here
// if (lazy[n] == 0 and subs[n] == 0)
// return;
// if(lazy[n] and subs[n]){
// t[n] = 1LL * (e - b + 1) * subs[n];
// t[n] = t[n] + 1LL * (e - b + 1) * lazy[n];
// if(b != e){
// lazy[lc] += lazy[n];
// lazy[rc] += lazy[n];
// subs[lc] = subs[rc] = subs[n];
// }
// lazy[n] = 0;
// subs[n] = 0;
// }
// else if(lazy[n]){
// t[n] = t[n] + 1LL * (e - b + 1) * lazy[n];
// if(b != e){
// lazy[lc] += lazy[n];
// lazy[rc] += lazy[n];
// }
// lazy[n] = 0;
// }
// else{
// t[n] = 1LL * (e - b + 1) * subs[n];
// if(b != e){
// lazy[lc] = 0;
// lazy[rc] = 0;
// subs[lc] = subs[rc] = subs[n];
// }
// subs[n] = 0;
// }
// }
//
// inline T combine(T a, T b){ // change here
// return a+b;
// }
// inline void pull(int n){ // change here
// t[n]=t[lc]+t[rc];
// }
// void build(int n, int b, int e){
// lazy[n]=0; // change here
// if(b==e){
// t[n]=a[b];
// return;
// }
// T mid= (b+e)>>1;
// build(lc, b, mid);
// build(rc, mid+1, e);
// pull(n);
// }
// void update (int n, int b, int e, int i, int j, T v){
// push(n, b, e);
// if(j<b || i>e) return;
// if(i<=b and j>=e){
// lazy[n]=v; // set lazy
// push(n, b, e);
// return ;
// }
// int mid=(b+e)>>1;
// update(lc, b, mid, i, j, v);
// update(rc, mid+1, e, i, j, v);
// pull(n);
// }
//
// void val_set(int n, int b, int e, int i, int j, T v){
// push(n, b, e);
// if(j<b || i>e) return;
// if(i<=b and j>=e){
// lazy[n] = 0;
// subs[n] = v;
// push(n, b, e);
// return ;
// }
// int mid=(b+e)>>1;
// val_set(lc, b, mid, i, j, v);
// val_set(rc, mid+1, e, i, j, v);
// pull(n);
// }
//
// T query(int n, int b, int e, int i, int j){
// push(n, b,e);
// if(i>e || j<b) return 0; // change gere
// if(i<=b and e<=j) return t[n];
// int mid=(b+e)>>1;
// return combine(query(lc, b,mid, i,j), query(rc, mid+1, e, i, j));
// }
//};
void solve(int tc)
{
int n, m; cin >> n >> m;
// for(int i = 0; i<n; i++)
// cin >> a[i];
// return;
// st<ll> s(n);
// s.build(1, 0, n-1);
// while(m--){
// int t, a, b; cin >> t >> a >> b;
// if(t == 1){
// int x; cin >> x;
// s.update(1, 0, n-1, a, b, x);
// }
// else if(t == 2){
// int x; cin >> x;
// s.val_set(1, 0, n-1, a, b, x);
// }
// else
// cout << s.query(1, 0, n-1, a, b) << '\n';
// }
}
signed main()
{
int test_case=1;
// ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
// cin >> test_case;
for(int i = 1; i <= test_case ; i++)
solve(i);
return 0;
}