結果

問題 No.1441 MErGe
ユーザー tkmst201tkmst201
提出日時 2021-06-06 23:03:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 1,000 ms
コード長 2,766 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 205,900 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2023-08-15 12:42:36
合計ジャッジ時間 9,118 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 6 ms
4,380 KB
testcase_06 AC 6 ms
4,376 KB
testcase_07 AC 6 ms
4,380 KB
testcase_08 AC 49 ms
4,376 KB
testcase_09 AC 47 ms
4,380 KB
testcase_10 AC 74 ms
4,376 KB
testcase_11 AC 68 ms
4,376 KB
testcase_12 AC 75 ms
4,376 KB
testcase_13 AC 217 ms
6,804 KB
testcase_14 AC 227 ms
6,804 KB
testcase_15 AC 231 ms
6,600 KB
testcase_16 AC 220 ms
6,860 KB
testcase_17 AC 213 ms
6,860 KB
testcase_18 AC 159 ms
6,024 KB
testcase_19 AC 182 ms
6,340 KB
testcase_20 AC 144 ms
5,752 KB
testcase_21 AC 124 ms
5,260 KB
testcase_22 AC 171 ms
5,236 KB
testcase_23 AC 274 ms
7,080 KB
testcase_24 AC 273 ms
7,076 KB
testcase_25 AC 271 ms
7,084 KB
testcase_26 AC 269 ms
7,108 KB
testcase_27 AC 272 ms
7,144 KB
testcase_28 AC 181 ms
7,108 KB
testcase_29 AC 185 ms
7,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

/**
 * @brief https://tkmst201.github.io/Library/DataStructure/BinaryIndexedTree.hpp
 */
template<typename T>
struct BinaryIndexedTree {
	using value_type = T;
	using const_reference = const value_type &;
	using F = std::function<value_type (const_reference, const_reference)>;
	using size_type = std::size_t;
	
private:
	size_type n;
	value_type id_elem;
	F f;
	std::vector<value_type> node;
	
public:
	BinaryIndexedTree(size_type n, const_reference id_elem, const F & f)
		: n(n), id_elem(id_elem), f(f), node(n + 1, id_elem) {}
	
	size_type size() const noexcept {
		return n;
	}
	
	void add(size_type i, const_reference x) noexcept {
		assert(i < size());
		++i;
		for (; i <= size(); i += i & -i) node[i] = f(node[i], x);
	}
	
	value_type sum(size_type i) const noexcept {
		assert(i <= size());
		value_type res = id_elem;
		for (; i > 0; i -= i & -i) res = f(node[i], res);
		return res;
	}
	
	size_type lower_bound(const_reference x) const noexcept {
		size_type res = 0;
		size_type s = id_elem, w = 1;
		while (w < size()) w <<= 1;
		for (; w > 0; w >>= 1) {
			if (res + w <= size()) {
				value_type cur = f(s, node[res + w]);
				if (cur < x) {
					res += w;
					s = cur;
				}
			}
		}
		return res;
	}
};

int main() {
	int N, Q;
	cin >> N >> Q;
	BinaryIndexedTree<ll> bit(N, 0, [](auto x, auto y) { return x + y; });
	auto bitp = bit;
	REP(i, N) bitp.add(i, 1);
	REP(i, N) {
		int a;
		scanf("%d", &a);
		bit.add(i, a);
	}
	vector<int> prv(N + 1);
	REP(i, N + 1) prv[i] = i - 1;
	// prv[0] = -1 に注意
	
	while (Q--) {
		int t, l, r;
		scanf("%d %d %d", &t, &l, &r);
		--l;
		
		auto get_pos = [&](int p) {
			return bitp.lower_bound(p + 1);
		};
		
		auto sum = [&](int p) {
			return bit.sum(get_pos(p));
		};
		
		if (t == 1) {
			int rp = get_pos(r);
			int lp = get_pos(l);
			const int nerp = prv[rp];
			prv[rp] = lp;
			rp = nerp;
			
			ll s = 0;
			while (rp >= lp) {
				int nex = prv[rp];
				ll cur = bit.sum(rp + 1) - bit.sum(rp);
				bit.add(rp, -cur);
				s += cur;
				if (rp != lp) {
					prv[rp] = lp;
					bitp.add(rp, -1);
				}
				rp = nex;
			}
			bit.add(lp, s);
		}
		else printf("%lld\n", sum(r) - sum(l));
	}
}
0