結果

問題 No.1441 MErGe
ユーザー SSRSSSRS
提出日時 2021-03-26 21:50:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 843 ms / 1,000 ms
コード長 3,107 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 179,480 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-11-28 22:50:23
合計ジャッジ時間 16,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 18 ms
5,248 KB
testcase_06 AC 18 ms
5,248 KB
testcase_07 AC 18 ms
5,248 KB
testcase_08 AC 179 ms
8,192 KB
testcase_09 AC 175 ms
7,808 KB
testcase_10 AC 283 ms
7,808 KB
testcase_11 AC 271 ms
6,144 KB
testcase_12 AC 299 ms
8,192 KB
testcase_13 AC 669 ms
22,656 KB
testcase_14 AC 664 ms
22,784 KB
testcase_15 AC 685 ms
22,528 KB
testcase_16 AC 651 ms
22,656 KB
testcase_17 AC 646 ms
22,528 KB
testcase_18 AC 544 ms
20,152 KB
testcase_19 AC 612 ms
21,600 KB
testcase_20 AC 480 ms
19,712 KB
testcase_21 AC 432 ms
13,952 KB
testcase_22 AC 628 ms
13,568 KB
testcase_23 AC 843 ms
23,424 KB
testcase_24 AC 801 ms
23,412 KB
testcase_25 AC 825 ms
23,360 KB
testcase_26 AC 818 ms
23,424 KB
testcase_27 AC 807 ms
23,296 KB
testcase_28 AC 539 ms
23,296 KB
testcase_29 AC 545 ms
23,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long INF = 1000000000000000;
template <typename T>
struct lazy_segment_tree{
	int N;
	vector<T> ST;
	vector<T> lazy;
	lazy_segment_tree(vector<T> &A){
		int n = A.size();
		N = 1;
		while (N < n){
			N *= 2;
		}
		ST = vector<T>(N * 2 - 1, 0);
		lazy = vector<T>(N * 2 - 1, INF);
		for (int i = 0; i < n; i++){
			ST[N - 1 + i] = A[i];
		}
		for (int i = N - 2; i >= 0; i--){
			ST[i] = ST[i * 2 + 1] + ST[i * 2 + 2];
		}
	}
	void eval(int i, int l, int r){
		if (lazy[i] != INF){
			if (i < N - 1){
				lazy[i * 2 + 1] = lazy[i];
				lazy[i * 2 + 2] = lazy[i];
			}
			ST[i] = lazy[i] * (r - l);
			lazy[i] = INF;
		}
	}
	void range_update(int L, int R, T x, int i, int l, int r){
		eval(i, l, r);
		if (R <= l || r <= L){
			return;
		} else if (L <= l && r <= R){
			lazy[i] = x;
			eval(i, l, r);
		} else {
			int m = (l + r) / 2;
			range_update(L, R, x, i * 2 + 1, l, m);
			range_update(L, R, x, i * 2 + 2, m, r);
			ST[i] = ST[i * 2 + 1] + ST[i * 2 + 2];
		}
	}
	void range_update(int L, int R, T x){
		range_update(L, R, x, 0, 0, N);
	}
	T range_sum(int L, int R, int i, int l, int r){
		eval(i, l, r);
		if (R <= l || r <= L){
			return 0;
		} else if (L <= l && r <= R){
			return ST[i];
		} else {
			int m = (l + r) / 2;
			return range_sum(L, R, i * 2 + 1, l, m) + range_sum(L, R, i * 2 + 2, m, r);
		}
	}
	T range_sum(int L, int R){
		return range_sum(L, R, 0, 0, N);
	}
};
template <typename T>
struct binary_indexed_tree{
	int N;
	vector<T> BIT;
	binary_indexed_tree(int n){
		N = 1;
		while (N < n){
			N *= 2;
		}
		BIT = vector<T>(N + 1, 0);
	}
	void add(int i, T x){
		i++;
		while (i <= N){
			BIT[i] += x;
			i += i & -i;
		}
	}
	T sum(int i){
		T ans = 0;
		while (i > 0){
			ans += BIT[i];
			i -= i & -i;
		}
		return ans;
	}
};
int main(){
  int N, Q;
  cin >> N >> Q;
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  lazy_segment_tree<long long> ST(A);
  binary_indexed_tree<int> BIT(N);
  for (int i = 0; i < N; i++){
    BIT.add(i, 1);
  }
  set<int> st;
  for (int i = 0; i < N; i++){
    st.insert(i);
  }
  for (int i = 0; i < Q; i++){
    int T, l, r;
    cin >> T >> l >> r;
    l--;
    r--;
    int l2 = l, r2 = r;
    int tv1 = N, fv1 = -1;
    while (tv1 - fv1 > 1){
      int mid = (tv1 + fv1) / 2;
      if (BIT.sum(mid + 1) > l){
        tv1 = mid;
      } else {
        fv1 = mid;
      }
    }
    l = tv1;
    int tv2 = N, fv2 = l - 1;
    while (tv2 - fv2 > 1){
      int mid = (tv2 + fv2) / 2;
      if (BIT.sum(mid + 1) > r){
        tv2 = mid;
      } else {
        fv2 = mid;
      }
    }
    r = tv2;
    if (T == 1){
      long long S = ST.range_sum(l, r + 1);
      ST.range_update(l, l + 1, S);
      ST.range_update(l + 1, r + 1, 0);
      while (true){
        auto itr = st.upper_bound(l);
        if (itr == st.end()){
          break;
        }
        if (*itr > r){
          break;
        }
        BIT.add(*itr, -1);
        st.erase(itr);
      }
    }
    if (T == 2){
      long long S = ST.range_sum(l, r + 1);
      cout << S << endl;
    }
  }
}
0