結果

問題 No.2170 Left Addition Machine
ユーザー 👑 rin204rin204
提出日時 2022-11-28 21:36:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 208,816 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-18 06:04:42
合計ジャッジ時間 44,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 532 ms
26,368 KB
testcase_04 AC 230 ms
6,816 KB
testcase_05 AC 334 ms
14,740 KB
testcase_06 AC 333 ms
16,128 KB
testcase_07 AC 513 ms
24,544 KB
testcase_08 AC 65 ms
14,764 KB
testcase_09 AC 426 ms
9,376 KB
testcase_10 AC 64 ms
6,816 KB
testcase_11 AC 244 ms
15,396 KB
testcase_12 AC 584 ms
26,632 KB
testcase_13 AC 583 ms
26,600 KB
testcase_14 AC 577 ms
26,672 KB
testcase_15 AC 596 ms
26,640 KB
testcase_16 AC 591 ms
26,624 KB
testcase_17 AC 581 ms
26,584 KB
testcase_18 AC 578 ms
26,612 KB
testcase_19 AC 580 ms
26,584 KB
testcase_20 AC 587 ms
26,496 KB
testcase_21 AC 378 ms
5,248 KB
testcase_22 AC 380 ms
5,248 KB
testcase_23 AC 383 ms
5,248 KB
testcase_24 AC 379 ms
5,248 KB
testcase_25 AC 378 ms
5,248 KB
testcase_26 AC 377 ms
5,248 KB
testcase_27 AC 384 ms
5,248 KB
testcase_28 AC 373 ms
5,248 KB
testcase_29 AC 371 ms
5,248 KB
testcase_30 AC 634 ms
26,580 KB
testcase_31 AC 631 ms
26,624 KB
testcase_32 AC 647 ms
26,616 KB
testcase_33 AC 623 ms
26,624 KB
testcase_34 AC 614 ms
26,624 KB
testcase_35 AC 636 ms
26,624 KB
testcase_36 AC 636 ms
26,596 KB
testcase_37 AC 620 ms
26,732 KB
testcase_38 AC 634 ms
26,496 KB
testcase_39 AC 380 ms
5,248 KB
testcase_40 AC 384 ms
5,248 KB
testcase_41 AC 381 ms
5,248 KB
testcase_42 AC 383 ms
5,248 KB
testcase_43 AC 388 ms
5,248 KB
testcase_44 AC 385 ms
5,248 KB
testcase_45 AC 378 ms
5,248 KB
testcase_46 AC 383 ms
5,248 KB
testcase_47 AC 381 ms
5,248 KB
testcase_48 AC 637 ms
26,648 KB
testcase_49 AC 615 ms
26,752 KB
testcase_50 AC 626 ms
26,624 KB
testcase_51 AC 623 ms
26,624 KB
testcase_52 AC 634 ms
26,624 KB
testcase_53 AC 618 ms
26,624 KB
testcase_54 AC 622 ms
26,752 KB
testcase_55 AC 626 ms
26,644 KB
testcase_56 AC 620 ms
26,624 KB
testcase_57 AC 571 ms
26,592 KB
testcase_58 AC 601 ms
26,620 KB
testcase_59 AC 572 ms
26,672 KB
testcase_60 AC 568 ms
26,496 KB
testcase_61 AC 573 ms
26,624 KB
testcase_62 AC 586 ms
26,624 KB
testcase_63 AC 570 ms
26,624 KB
testcase_64 AC 582 ms
26,624 KB
testcase_65 AC 593 ms
26,580 KB
testcase_66 AC 129 ms
5,248 KB
testcase_67 AC 510 ms
26,496 KB
testcase_68 AC 569 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
#include <atcoder/segtree>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
using ll = long long;
const int N = 200200;
mint pow2[N];

struct S{
	ll l;
	ll r;
	int size;
	mint ans;
	int anssize;
};

S op(S l, S r){
	if(l.size == -1) return r;
	else if(r.size == -1) return l;
	S ret;
	ret.l = l.l;
	ret.r = r.r;
	ret.size = l.size + r.size;
	if(r.size != r.anssize || l.r >= r.l){
		ret.ans = r.ans;
		ret.anssize = r.anssize;
	}
	else{
		ret.ans = l.ans + (2 * r.ans - r.l) * pow2[l.anssize - 1];
		ret.anssize = l.anssize + r.size;
	}
	return ret;
}

S e(){
	return S{0, 0, -1, 0, 0};
}

int main(){
	pow2[0] = 1;
	for(int i = 1; i < N; i++) pow2[i] = pow2[i - 1] * 2;
	int n, Q;
	cin >> n >> Q;
	vector<S> A(n);
	ll a;
	for(int i = 0; i < n; i++){
		cin >> a;
		A[i] = S{a, a, 1, a, 1};
	}
	segtree<S, op, e> seg(A);
	int l, r;
	while(Q--){
		cin >> l >> r;
		cout << seg.prod(l - 1, r).ans.val() << endl;
	}

}
0