-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhaybales2.java
363 lines (277 loc) · 7.52 KB
/
haybales2.java
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
public class haybales2 {
static long[] arr, lazy;
static Node[] tree;
public static long sum (int i, int l, int r) {
return tree[i].sum + (r - l + 1) * lazy[i];
}
public static long min (int i) {
return tree[i].min + lazy[i];
}
public static void merge (int i, int l, int r) {
int mid = (l + r) / 2;
tree[i] = new Node (sum (i * 2 + 1, l, mid) + sum (i * 2 + 2, mid + 1, r),
Math.min (min (i * 2 + 1), min (i * 2 + 2)));
}
public static void push (int i, int l, int r) {
tree[i] = new Node (tree[i].sum + (r - l + 1) * lazy[i], tree[i].min + lazy[i]);
if (l != r) {
lazy[i * 2 + 1] += lazy[i];
lazy[i * 2 + 2] += lazy[i];
}
lazy[i] = 0;
}
public static void build (int i, int l, int r) {
if (l == r) {
tree[i] = new Node (arr[l], arr[l]);
}
else {
int mid = (l + r) / 2;
build (i * 2 + 1, l, mid);
build (i * 2 + 2, mid + 1, r);
merge (i, l, r);
}
}
public static void update (int i, int l, int r, int ql, int qr, int v) {
//System.err.println (i + " " + l + " " + r + " " + ql + " " + qr + " " + v + " ");
//System.err.println ("node: " + tree[i].sum + " " + tree[i].max + " " + lazy[i]);
if (l == ql && r == qr) {
lazy[i] += v;
push (i, l, r);
}
else {
int mid = (l + r) / 2;
push (i, l, r);
if (qr <= mid)
update (i * 2 + 1, l, mid, ql, qr, v);
else if (ql > mid)
update (i * 2 + 2, mid + 1, r, ql, qr, v);
else {
update (i * 2 + 1, l, mid, ql, mid, v);
update (i * 2 + 2, mid + 1, r, mid + 1, qr, v);
}
merge (i, l, r);
}
//System.err.println ("new node: " + tree[i].sum + " " + tree[i].max + " " + lazy[i]);
}
public static Node query (int i, int l, int r, int ql, int qr) {
//System.err.println ("q: " + i + " " + l + " " + r + " " + ql + " " + qr);
//System.err.println ("qnode: " + tree[i].sum + " " + tree[i].max + " " + lazy[i]);
if (l == ql && r == qr) {
push (i, l, r);
return tree[i];
}
else {
int mid = (l + r) / 2;
push (i, l, r);
Node ans;
if (qr <= mid)
ans = query (i * 2 + 1, l, mid, ql, qr);
else if (ql > mid)
ans = query (i * 2 + 2, mid + 1, r, ql, qr);
else {
Node lq = query (i * 2 + 1, l, mid, ql, mid);
Node rq = query (i * 2 + 2, mid + 1, r, mid + 1, qr);
ans = new Node (lq.sum + rq.sum + (mid - l + 1) * lazy[i * 2 + 1] + (r - mid) * lazy[i * 2 + 2],
Math.min (lq.min + lazy[i * 2 + 1], rq.min + lazy[i * 2 + 2]));
}
merge (i, l, r);
return ans;
}
}
public static void main (String[] t) throws IOException {
INPUT in = new INPUT (System.in);
PrintWriter out = new PrintWriter (System.out);
int N = in.iscan (), Q = in.iscan ();
arr = new long[N];
tree = new Node[4 * N];
lazy = new long[4 * N];
for (int n = 0; n < N; ++n)
arr[n] = in.iscan ();
build (0, 0, N - 1);
for (int q = 0, c, a, b; q < Q; ++q) {
c = in.cscan ();
a = in.iscan () - 1;
b = in.iscan () - 1;
if (c == 'M') // query min
out.println (query (0, 0, N - 1, a, b).min);
else if (c == 'P') // increment range
update (0, 0, N - 1, a, b, in.iscan ());
else // query sum
out.println (query (0, 0, N - 1, a, b).sum);
}
out.close ();
}
private static class Node {
long sum, min;
public Node (long sum, long min) {
this.sum = sum;
this.min = min;
}
}
private static class INPUT {
private InputStream stream;
private byte[] buf = new byte[1024];
private int curChar, numChars;
public INPUT (InputStream stream) {
this.stream = stream;
}
public INPUT (String file) throws IOException {
this.stream = new FileInputStream (file);
}
// read one character
public int cscan () throws IOException {
//if (numChars == -1) throw new InputMismatchException ();
if (curChar >= numChars) {
curChar = 0;
numChars = stream.read (buf);
//if (numChars <= 0) return -1;
}
return buf[curChar++];
}
// read an int
public int iscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
int res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException ();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
// read a string
public String sscan () throws IOException {
int c = cscan ();
while (space (c)) c = cscan ();
StringBuilder res = new StringBuilder ();
do {
res.appendCodePoint (c);
c = cscan ();
}
while (!space (c));
return res.toString ();
}
// read a double
public double dscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
double res = 0;
while (!space (c) && c != '.') {
if (c == 'e' || c == 'E') return res * UTILITIES.fast_pow (10, iscan ()); /*Math.pow (10, iscan ());*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
//res = (res << 1) + (res << 3);
res *= 10;
res += c - '0';
c = cscan ();
}
if (c == '.') {
c = cscan ();
double m = 1;
while (!space (c)) {
if (c == 'e' || c == 'E') return res * UTILITIES.fast_pow (10, iscan ()); /*Math.pow (10, iscan ()
);*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
m /= 10;
res += (c - '0') * m;
c = cscan ();
}
}
return res * sgn;
}
// read a long
public long lscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
long res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
public boolean space (int c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
}
public static class UTILITIES {
static final double EPS = 10e-6;
public static int lower_bound (int[] arr, int x) {
int low = 0, high = arr.length, mid = -1;
while (low < high) {
mid = (low + high) / 2;
if (arr[mid] >= x)
high = mid;
else
low = mid + 1;
}
return low;
}
public static int upper_bound (int[] arr, int x) {
int low = 0, high = arr.length, mid = -1;
while (low < high) {
mid = (low + high) / 2;
if (arr[mid] > x)
high = mid;
else
low = mid + 1;
}
return low;
}
public static int gcd (int a, int b) {
return b == 0 ? a : gcd (b, a % b);
}
public static int lcm (int a, int b) {
return a * b / gcd (a, b);
}
public static int fast_pow_mod (int b, int x, int mod) {
if (x == 0) return 1;
if (x == 1) return b;
if (x % 2 == 0) return fast_pow_mod (b * b % mod, x / 2, mod) % mod;
return b * fast_pow_mod (b * b % mod, x / 2, mod) % mod;
}
public static int fast_pow (int b, int x) {
if (x == 0) return 1;
if (x == 1) return b;
if (x % 2 == 0) return fast_pow (b * b, x / 2);
return b * fast_pow (b * b, x / 2);
}
public static long choose (long n, long k) {
k = Math.min (k, n - k);
long val = 1;
for (int i = 0; i < k; ++i)
val = val * (n - i) / (i + 1);
return val;
}
public static long permute (int n, int k) {
if (n < k) return 0;
long val = 1;
for (int i = 0; i < k; ++i)
val = (val * (n - i));
return val;
}
}
}