結果
問題 | No.876 Range Compress Query |
ユーザー | nebukuro09 |
提出日時 | 2019-09-08 10:58:09 |
言語 | D (dmd 2.106.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 160 ms
10,204 KB |
testcase_12 | AC | 132 ms
9,592 KB |
testcase_13 | AC | 138 ms
10,052 KB |
testcase_14 | AC | 165 ms
9,328 KB |
testcase_15 | AC | 114 ms
9,332 KB |
testcase_16 | AC | 160 ms
15,828 KB |
testcase_17 | AC | 161 ms
10,580 KB |
testcase_18 | AC | 167 ms
9,992 KB |
ソースコード
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)); } } }