結果
問題 | No.876 Range Compress Query |
ユーザー | tone |
提出日時 | 2019-09-27 17:55:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,030 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 82,732 KB |
実行使用メモリ | 8,144 KB |
最終ジャッジ日時 | 2024-09-24 20:13:06 |
合計ジャッジ時間 | 3,663 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 242 ms
7,892 KB |
testcase_12 | AC | 201 ms
7,892 KB |
testcase_13 | AC | 203 ms
7,756 KB |
testcase_14 | AC | 232 ms
7,896 KB |
testcase_15 | AC | 175 ms
8,020 KB |
testcase_16 | AC | 238 ms
8,016 KB |
testcase_17 | AC | 238 ms
8,144 KB |
testcase_18 | AC | 249 ms
8,020 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <deque> #include <queue> #include <algorithm> #include <set> #include <map> #include <bitset> #define vv(a, b, c, d) vector<vector<d> >(a, vector<d>(b, c)) #define vvi std::vector<std::vector<int> > #define vvl std::vector<std::vector<ll> > #define MODs 1000000007; typedef long long int ll; using namespace std; //------------------------------------------------------------------- ll M=1; vector<ll> seg, ad; void init(ll N){ while(M<N) M*=2; M=M*2-1; for(int i=0;i<M;i++) { seg.push_back(0); ad.push_back(0); } } void update(ll l, ll r, ll x, ll k){ k+=(M+1)/2-1; seg[k] = x; while(k>0){ k = (k-1)/2; seg[k] = seg[k*2+1] + seg[k*2+2]; } } void add(ll a, ll b, ll l, ll r, ll x, ll k){ if(r<=a||b<=l) return; if(a<=l&&r<=b) ad[k]+=x; else{ add(a, b, l, (l+r)/2, x, k*2+1); add(a, b, (l+r)/2, r, x, k*2+2); } } ll get_add(ll k){ k+=(M+1)/2-1; ll ret = ad[k]; while(k>0){ k = (k-1)/2; ret += ad[k]; } return ret; } ll query(ll a, ll b, ll l, ll r, ll k){ if(r<=a || b<=l) return 0; if(a<=l && r<=b) return seg[k]; ll A = query(a, b, l, (l+r)/2, k*2+1); ll B = query(a, b, (l+r)/2, r, k*2+2); return A + B; } //------------------------------------------------------------------- int main(int argc, char const *argv[]) { ll N, Q, a, b, c, d; std::cin >> N >> Q; init(N); std::vector<ll> A(N); for(int i=0;i<N;i++) std::cin >> A[i]; for(int i=0;i<N-1;i++) if(A[i]!=A[i+1]) update(0, (M+1)/2, 1, i); for(int i=0;i<Q;i++){ std::cin >> a; if(a == 2) { std::cin >> b >> c; if(b!=c){ std::cout << query(b-1, c-1, 0, (M+1)/2, 0) + 1<< '\n'; }else std::cout << 1 << '\n'; }else { std::cin >> b >> c >> d; add(b-1, c, 0, (M+1)/2, d, 0); if(b-1!=0&&get_add(b-2)+A[b-2]!=get_add(b-1)+A[b-1]) update(0, (M+1)/2, 1, b-2); if(c-1!=N-1&&get_add(c-1)+A[c-1]!=get_add(c)+A[c]) update(0, (M+1)/2, 1, c-1); } } return 0; }