結果
| 問題 | No.1705 Mode of long array |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-08 23:06:36 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
AC
|
| 実行時間 | 223 ms / 3,000 ms |
| コード長 | 1,880 bytes |
| コンパイル時間 | 960 ms |
| コンパイル使用メモリ | 121,936 KB |
| 実行使用メモリ | 13,048 KB |
| 最終ジャッジ日時 | 2024-06-22 12:45:46 |
| 合計ジャッジ時間 | 11,568 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 51 |
ソースコード
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;
immutable long MOD = 10^^9 + 7;
void main() {
auto s = readln.split.map!(to!long);
auto N = s[0];
auto M = s[1].to!int;
auto A = readln.split.map!(to!long).array;
auto st = new SegmentTree!(Tuple!(long, int), max, tuple(-1L, 0))(M);
foreach (i, a; A) st.assign(i.to!int, tuple(a, i.to!int));
auto Q = readln.chomp.to!int;
foreach (_; 0..Q) {
s = readln.split.map!(to!long);
if (s[0] == 1) {
auto x = s[1].to!int - 1;
auto y = s[2];
auto v = st.query(x, x);
st.assign(x, tuple(v[0]+y, v[1]));
} else if (s[0] == 2) {
auto x = s[1].to!int - 1;
auto y = s[2];
auto v = st.query(x, x);
st.assign(x, tuple(v[0]-y, v[1]));
} else {
(st.query(0, M-1)[1] + 1).writeln;
}
}
}
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]);
}
}
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));
}
}
}