結果
問題 | No.259 セグメントフィッシング+ |
ユーザー | koba-e964 |
提出日時 | 2015-08-18 17:19:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,319 bytes |
コンパイル時間 | 670 ms |
コンパイル使用メモリ | 66,920 KB |
実行使用メモリ | 11,568 KB |
最終ジャッジ日時 | 2024-07-18 10:10:28 |
合計ジャッジ時間 | 2,951 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <vector> /** * Segment Tree. This data structure is useful for fast folding on intervals of an array * whose elements are elements of monoid M. Note that constructing this tree requires the identity * element of M and the operation of M. * Header requirement: vector */ template<class I, class BiOp = I (*) (I, I)> class SegTree { int n; std::vector<I> dat; BiOp op; I e; public: SegTree(int n_, BiOp op, I e) : op(op), e(e) { n = 1; while (n < n_) { n *= 2; } // n is a power of 2 dat.resize(2 * n); for (int i = 0; i < 2 * n - 1; i++) { dat[i] = e; } } /* ary[k] <- v */ void update(int k, I v) { k += n - 1; dat[k] = v; while (k > 0) { k = (k - 1) / 2; dat[k] = op(dat[2 * k + 1], dat[2 * k + 2]); } } void update_array(int k, int len, const I *vals) { for (int i = 0; i < len; ++i) { update(k + i, vals[i]); } } /* l,r are for simplicity */ I querySub(int a, int b, int k, int l, int r) const { // [a,b) and [l,r) intersects? if (r <= a || b <= l) return e; if (a <= l && r <= b) return dat[k]; I vl = querySub(a, b, 2 * k + 1, l, (l + r) / 2); I vr = querySub(a, b, 2 * k + 2, (l + r) / 2, r); return op(vl, vr); } /* [a, b] (note: inclusive) */ I query(int a, int b) const { return querySub(a, b + 1, 0, 0, n); } }; #include <iostream> #include <algorithm> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; ll tt(const SegTree<ll, plus<ll> > &st, int x, int y, int n) { if (x / n == y / n) { return st.query(x % n, y % n); } return st.query(x % n, n - 1) + st.query(0, y % n); } int main(void){ int n, q; cin >> n >> q; SegTree<ll, plus<ll> > st(2 * n, plus<ll>(), 0); REP(t, 0, q) { int u = t % (2 * n); string x; ll y, z; cin >> x >> y >> z; switch(x[0]) { case 'L': { int pos = (y + t) % (2 * n); st.update(pos, st.query(pos, pos) + z); break; } case 'R': { int pos = (-y + t + 2 * n - 1) % (2 * n); st.update(pos, st.query(pos, pos) + z); break; } case 'C': { ll q = tt(st, y + t, z + t - 1, 2 * n); q += tt(st, - z + t + 2 * n, -y + t + 2 * n - 1, 2 * n); cout << q << endl; } } } }