結果

問題 No.2170 Left Addition Machine
ユーザー norikamenorikame
提出日時 2022-12-24 02:28:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 1,084 bytes
コンパイル時間 5,416 ms
コンパイル使用メモリ 308,856 KB
実行使用メモリ 8,472 KB
最終ジャッジ日時 2024-04-29 06:10:13
合計ジャッジ時間 42,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 498 ms
7,552 KB
testcase_04 AC 222 ms
5,376 KB
testcase_05 AC 308 ms
5,376 KB
testcase_06 AC 295 ms
6,144 KB
testcase_07 AC 457 ms
6,400 KB
testcase_08 AC 57 ms
5,376 KB
testcase_09 AC 394 ms
5,376 KB
testcase_10 AC 60 ms
5,376 KB
testcase_11 AC 220 ms
5,760 KB
testcase_12 AC 533 ms
7,828 KB
testcase_13 AC 521 ms
7,936 KB
testcase_14 AC 527 ms
7,936 KB
testcase_15 AC 529 ms
7,808 KB
testcase_16 AC 528 ms
7,808 KB
testcase_17 AC 524 ms
7,808 KB
testcase_18 AC 535 ms
7,808 KB
testcase_19 AC 530 ms
7,936 KB
testcase_20 AC 538 ms
7,808 KB
testcase_21 AC 366 ms
5,376 KB
testcase_22 AC 369 ms
5,376 KB
testcase_23 AC 366 ms
5,376 KB
testcase_24 AC 365 ms
5,376 KB
testcase_25 AC 374 ms
5,376 KB
testcase_26 AC 374 ms
5,376 KB
testcase_27 AC 370 ms
5,376 KB
testcase_28 AC 369 ms
5,376 KB
testcase_29 AC 361 ms
5,376 KB
testcase_30 AC 504 ms
7,168 KB
testcase_31 AC 499 ms
7,168 KB
testcase_32 AC 505 ms
7,168 KB
testcase_33 AC 506 ms
7,168 KB
testcase_34 AC 491 ms
7,168 KB
testcase_35 AC 501 ms
7,168 KB
testcase_36 AC 489 ms
7,168 KB
testcase_37 AC 504 ms
7,296 KB
testcase_38 AC 503 ms
7,168 KB
testcase_39 AC 363 ms
5,376 KB
testcase_40 AC 359 ms
5,376 KB
testcase_41 AC 360 ms
5,376 KB
testcase_42 AC 357 ms
5,376 KB
testcase_43 AC 358 ms
5,376 KB
testcase_44 AC 359 ms
5,376 KB
testcase_45 AC 360 ms
5,376 KB
testcase_46 AC 360 ms
5,376 KB
testcase_47 AC 358 ms
5,376 KB
testcase_48 AC 490 ms
7,168 KB
testcase_49 AC 491 ms
7,296 KB
testcase_50 AC 496 ms
7,168 KB
testcase_51 AC 501 ms
7,168 KB
testcase_52 AC 505 ms
7,296 KB
testcase_53 AC 499 ms
7,296 KB
testcase_54 AC 506 ms
7,168 KB
testcase_55 AC 504 ms
7,168 KB
testcase_56 AC 501 ms
7,168 KB
testcase_57 AC 538 ms
8,340 KB
testcase_58 AC 538 ms
8,468 KB
testcase_59 AC 541 ms
8,336 KB
testcase_60 AC 535 ms
8,468 KB
testcase_61 AC 542 ms
8,340 KB
testcase_62 AC 545 ms
8,340 KB
testcase_63 AC 538 ms
8,336 KB
testcase_64 AC 546 ms
8,468 KB
testcase_65 AC 536 ms
8,340 KB
testcase_66 AC 128 ms
5,376 KB
testcase_67 AC 489 ms
8,472 KB
testcase_68 AC 533 ms
8,340 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;

int main() {
	int n, q;
	cin >> n >> q;
	vector<int> a(n);
	rep(i, n) cin >> a[i];
	vector<ll> two(n+1, 1);
	rep(i, n) two[i+1] = two[i] * 2 % mod;
	vector<ll> sums(n+1);
	vector<int> sids;
	sids.push_back(n);
	ll nval = 0;
	repr(i, n) {
		sums[i+1] = nval;
		if (i-1<0 || a[i-1]>=a[i]) {
			sids.push_back(i);
			nval = 0;
		}
		else nval = (nval * 2 + a[i]) % mod;
	}
	reverse(all(sids));
	rep(i, q) {
		int li, ri;
		cin >> li >> ri;
		--li;
		int ti = lower_bound(all(sids), ri) - sids.begin(), pi = ti - 1, spi = max(li+1, sids[pi]+1);
		ll res = (sums[spi] - sums[ri] * two[ri-spi] % mod + mod + a[spi-1]) % mod;
		cout << res << endl;
	}
	return 0;
}
0