結果

問題 No.2170 Left Addition Machine
ユーザー norikamenorikame
提出日時 2022-12-25 13:56:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 1,418 bytes
コンパイル時間 6,894 ms
コンパイル使用メモリ 320,152 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-11-19 02:26:42
合計ジャッジ時間 52,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 542 ms
28,032 KB
testcase_04 AC 207 ms
5,248 KB
testcase_05 AC 332 ms
15,232 KB
testcase_06 AC 339 ms
16,896 KB
testcase_07 AC 495 ms
25,216 KB
testcase_08 AC 82 ms
14,892 KB
testcase_09 AC 408 ms
9,088 KB
testcase_10 AC 61 ms
5,248 KB
testcase_11 AC 249 ms
15,872 KB
testcase_12 AC 592 ms
28,160 KB
testcase_13 AC 590 ms
28,160 KB
testcase_14 AC 587 ms
28,160 KB
testcase_15 AC 590 ms
28,160 KB
testcase_16 AC 594 ms
28,160 KB
testcase_17 AC 599 ms
28,160 KB
testcase_18 AC 605 ms
28,160 KB
testcase_19 AC 600 ms
28,160 KB
testcase_20 AC 599 ms
28,160 KB
testcase_21 AC 349 ms
5,248 KB
testcase_22 AC 344 ms
5,248 KB
testcase_23 AC 348 ms
5,248 KB
testcase_24 AC 339 ms
5,248 KB
testcase_25 AC 343 ms
5,248 KB
testcase_26 AC 345 ms
5,248 KB
testcase_27 AC 364 ms
5,248 KB
testcase_28 AC 349 ms
5,248 KB
testcase_29 AC 343 ms
5,248 KB
testcase_30 AC 630 ms
28,160 KB
testcase_31 AC 722 ms
28,160 KB
testcase_32 AC 641 ms
28,160 KB
testcase_33 AC 638 ms
28,288 KB
testcase_34 AC 627 ms
28,160 KB
testcase_35 AC 676 ms
28,160 KB
testcase_36 AC 651 ms
28,160 KB
testcase_37 AC 644 ms
28,160 KB
testcase_38 AC 655 ms
28,288 KB
testcase_39 AC 358 ms
5,248 KB
testcase_40 AC 355 ms
5,248 KB
testcase_41 AC 344 ms
5,248 KB
testcase_42 AC 348 ms
5,248 KB
testcase_43 AC 347 ms
5,248 KB
testcase_44 AC 362 ms
5,248 KB
testcase_45 AC 346 ms
5,248 KB
testcase_46 AC 349 ms
5,248 KB
testcase_47 AC 348 ms
5,248 KB
testcase_48 AC 624 ms
28,160 KB
testcase_49 AC 621 ms
28,160 KB
testcase_50 AC 632 ms
28,160 KB
testcase_51 AC 629 ms
28,160 KB
testcase_52 AC 624 ms
28,288 KB
testcase_53 AC 629 ms
28,160 KB
testcase_54 AC 635 ms
28,160 KB
testcase_55 AC 652 ms
28,160 KB
testcase_56 AC 683 ms
28,160 KB
testcase_57 AC 580 ms
28,160 KB
testcase_58 AC 580 ms
28,160 KB
testcase_59 AC 566 ms
28,160 KB
testcase_60 AC 574 ms
28,160 KB
testcase_61 AC 583 ms
28,160 KB
testcase_62 AC 571 ms
28,160 KB
testcase_63 AC 581 ms
28,160 KB
testcase_64 AC 581 ms
28,160 KB
testcase_65 AC 575 ms
28,288 KB
testcase_66 AC 118 ms
5,248 KB
testcase_67 AC 531 ms
28,160 KB
testcase_68 AC 583 ms
28,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const ll mod = 998244353LL;
const int INF = (int)(1e9);
vector<ll> two;
tuple<int, int, int, ll, int> op(tuple<int, int, int, ll, int> a, tuple<int, int, int, ll, int> b) {
	if (get<4>(b) == -1) return a;
	if (get<4>(a) == -1) return b;
	if (get<4>(b)<get<2>(b) || get<1>(a)>=get<0>(b)) return make_tuple(get<0>(a), get<1>(b), get<2>(a)+get<2>(b), get<3>(b), get<4>(b));
	return make_tuple(get<0>(a), get<1>(b), get<2>(a)+get<2>(b), (get<3>(a)+((get<3>(b)-get<0>(b)+mod)*2+get<0>(b))%mod*two[get<4>(a)-1]%mod)%mod, get<4>(a)+get<4>(b));
}

tuple<int, int, int, ll, int> e() { return make_tuple(-INF, -INF, 0, -INF, -1); }

int main() {
	int n, q;
	cin >> n >> q;
	vector<int> a(n);
	rep(i, n) cin >> a[i];
	two.assign(n+1, 0);
	two[0] = 1;
	rep(i, n) two[i+1] = two[i] * 2 % mod;
	segtree<tuple<int, int, int, ll, int>, op, e> st(n);
	rep(i, n) st.set(i, make_tuple(a[i], a[i], 1, a[i], 1));
	rep(i, q) {
		int li, ri;
		cin >> li >> ri;
		--li;
		ll res = get<3>(st.prod(li, ri));
		cout << res << endl;
	}
	return 0;
}
0