結果

問題 No.1441 MErGe
ユーザー kwm_tkwm_t
提出日時 2021-03-27 02:09:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 1,000 ms
コード長 2,278 bytes
コンパイル時間 3,651 ms
コンパイル使用メモリ 236,608 KB
実行使用メモリ 18,968 KB
最終ジャッジ日時 2024-05-06 19:51:55
合計ジャッジ時間 12,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 8 ms
6,944 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 76 ms
7,296 KB
testcase_09 AC 76 ms
7,296 KB
testcase_10 AC 131 ms
7,168 KB
testcase_11 AC 116 ms
6,940 KB
testcase_12 AC 132 ms
7,296 KB
testcase_13 AC 318 ms
18,748 KB
testcase_14 AC 310 ms
18,684 KB
testcase_15 AC 339 ms
18,628 KB
testcase_16 AC 303 ms
18,776 KB
testcase_17 AC 294 ms
18,684 KB
testcase_18 AC 225 ms
18,016 KB
testcase_19 AC 250 ms
18,444 KB
testcase_20 AC 194 ms
17,888 KB
testcase_21 AC 178 ms
11,408 KB
testcase_22 AC 274 ms
11,280 KB
testcase_23 AC 381 ms
18,956 KB
testcase_24 AC 360 ms
18,872 KB
testcase_25 AC 364 ms
18,912 KB
testcase_26 AC 365 ms
18,876 KB
testcase_27 AC 375 ms
18,968 KB
testcase_28 AC 344 ms
18,892 KB
testcase_29 AC 343 ms
18,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include "atcoder/all"
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()

typedef pair<long long, int> P;
//data
struct S {
	long long num;
	int info;
};
//lazy
struct F {
	long long num;
	int info;
};
//★自分で編集
//S*S->S
P op(P s_l, P s_r) { return { s_l.first + s_r.first ,s_l.second + s_r.second }; }

//op(a,e) = a = op(e,a)なeを返す
P e() { return { (long long)0,0 }; }

//f(x)を返す関数
P mapping(P f, P s) {
	if (f.second == -1) { return s; }
	return f;
}

//f(g(x))の合成関数
//c(ax+b)+d = acx+(bc+d)
//rが先
P composition(P f, P g) {
	if (f.second == -1) { return g; }
	if (g.second == -1) { return f; }
	return f;
}

//mapping(id,a) = aなidを返す
P id() { return { (long long)0,-1 }; }

int target;
bool f(P v) { return v.second <= target; }

int main() {
	int N, Q;
	cin >> N >> Q;
	vector<P> A(N);
	rep(i, N) {
		scanf("%lld", &A[i].first);
		A[i].second = 1;
	}

	lazy_segtree<P, op, e, P, mapping, composition, id> seg(A);

	rep(i, Q) {
		int T, l, r;
		scanf("%d %d %d", &T, &l, &r);

		target = r;
		r = seg.max_right<f>(0);
		target = l - 1;
		l = seg.max_right<f>(0);


		if (T == 1) {
			long long S = seg.prod(l, r).first;
			seg.apply(l, r, e());
			seg.set(l, make_pair(S, 1));
		}
		else {
			printf("%lld\n", seg.prod(l, r).first);
		}

	}
	/*vector<long long>A(N);
	vector<P>a(N);
	rep(i, N) {
		cin >> A[i];
		a[i] = { A[i],1 };
	}
	lazy_segtree<P, op, e, P, mapping, composition, id> seg(a);
	while (Q--) {
		int t, l, r;
		cin >> t >> l >> r;
		y = l - 1;
		int xl = seg.max_right<g>(0);
		y = r;
		int xr = seg.max_right<g>(0);
		if (1 == t) {
			//更新
			int sum = seg.prod(xl, xr).first;
			seg.apply(xl, xr, { 0,0 });
			seg.apply(xl, xl + 1, { sum ,1 });
		}
		else {
			//取得
			cout << seg.prod(xl, xr).first << endl;
		}
	}*/
	return 0;
}
0