結果
問題 | No.876 Range Compress Query |
ユーザー |
|
提出日時 | 2019-09-08 10:58:09 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,151 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 121,324 KB |
実行使用メモリ | 15,828 KB |
最終ジャッジ日時 | 2024-06-22 02:29:40 |
合計ジャッジ時間 | 3,197 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 14 WA * 4 |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm;import std.typecons, std.range, std.random, std.math, std.container;import std.numeric, std.bigint, core.bitop, core.stdc.stdio;void main() {auto s = readln.split.map!(to!int);auto N = s[0];auto Q = s[1];auto A = readln.split.map!(to!long).array;auto B = iota(N-1).map!(i => A[i+1]-A[i]).array;auto st = new SegmentTree!(long, (a,b)=>a+b, 0)(N);foreach (i; 0..N-1) st.assign(i, B[i] != 0);while (Q--) {auto x = readln.split.map!(to!int);auto t = x[0];auto il = x[1] - 1;auto ir = x[2] - 1;if (t == 1) {auto v = x[3].to!long;if (il > 0) {B[il-1] -= v;st.assign(il-1, B[il-1] != 0);}if (ir < N - 1) {B[ir] += v;st.assign(ir, B[ir] != 0);}} else {if (il == ir) {writeln(1);} else {writeln(st.query(il, ir-1) + 1);}}}}class SegmentTree(T, alias op, T e) {T[] table;int size;int offset;this(int n) {size = 1;while (size <= n) size <<= 1;size <<= 1;table = new T[](size);fill(table, e);offset = size / 2;}void assign(int pos, T val) {pos += offset;table[pos] = val;while (pos > 1) {pos /= 2;table[pos] = op(table[pos*2], table[pos*2+1]);}}void add(int pos, T val) {pos += offset;table[pos] += val;while (pos > 1) {pos /= 2;table[pos] = op(table[pos*2], table[pos*2+1]);}}T query(int l, int r) {return query(l, r, 1, 0, offset-1);}T query(int l, int r, int i, int a, int b) {if (b < l || r < a) {return e;} else if (l <= a && b <= r) {return table[i];} else {return op(query(l, r, i*2, a, (a+b)/2), query(l, r, i*2+1, (a+b)/2+1, b));}}}