結果

問題 No.2170 Left Addition Machine
ユーザー norikamenorikame
提出日時 2022-12-25 11:23:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 6,091 ms
コンパイル使用メモリ 308,564 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-18 22:54:46
合計ジャッジ時間 45,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 459 ms
10,752 KB
testcase_04 AC 204 ms
5,248 KB
testcase_05 AC 301 ms
6,784 KB
testcase_06 AC 283 ms
8,320 KB
testcase_07 AC 431 ms
8,448 KB
testcase_08 AC 58 ms
6,656 KB
testcase_09 AC 372 ms
5,248 KB
testcase_10 AC 56 ms
5,248 KB
testcase_11 AC 214 ms
7,296 KB
testcase_12 AC 509 ms
11,008 KB
testcase_13 AC 506 ms
11,008 KB
testcase_14 AC 515 ms
11,008 KB
testcase_15 AC 516 ms
11,008 KB
testcase_16 AC 516 ms
11,008 KB
testcase_17 AC 512 ms
11,008 KB
testcase_18 AC 506 ms
11,008 KB
testcase_19 AC 513 ms
11,008 KB
testcase_20 AC 517 ms
11,008 KB
testcase_21 AC 349 ms
5,248 KB
testcase_22 AC 348 ms
5,248 KB
testcase_23 AC 346 ms
5,248 KB
testcase_24 AC 341 ms
5,248 KB
testcase_25 AC 350 ms
5,248 KB
testcase_26 AC 349 ms
5,248 KB
testcase_27 AC 350 ms
5,248 KB
testcase_28 AC 351 ms
5,248 KB
testcase_29 AC 350 ms
5,248 KB
testcase_30 AC 501 ms
11,008 KB
testcase_31 AC 502 ms
11,136 KB
testcase_32 AC 499 ms
11,136 KB
testcase_33 AC 506 ms
11,008 KB
testcase_34 AC 499 ms
11,008 KB
testcase_35 AC 494 ms
11,008 KB
testcase_36 AC 497 ms
11,008 KB
testcase_37 AC 502 ms
11,008 KB
testcase_38 AC 505 ms
11,008 KB
testcase_39 AC 346 ms
5,248 KB
testcase_40 AC 351 ms
5,248 KB
testcase_41 AC 350 ms
5,248 KB
testcase_42 AC 353 ms
5,248 KB
testcase_43 AC 343 ms
5,248 KB
testcase_44 AC 351 ms
5,248 KB
testcase_45 AC 354 ms
5,248 KB
testcase_46 AC 352 ms
5,248 KB
testcase_47 AC 349 ms
5,248 KB
testcase_48 AC 496 ms
11,136 KB
testcase_49 AC 499 ms
11,008 KB
testcase_50 AC 503 ms
11,008 KB
testcase_51 AC 498 ms
11,136 KB
testcase_52 AC 511 ms
11,136 KB
testcase_53 AC 498 ms
11,008 KB
testcase_54 AC 492 ms
11,136 KB
testcase_55 AC 488 ms
11,136 KB
testcase_56 AC 505 ms
11,136 KB
testcase_57 AC 511 ms
11,008 KB
testcase_58 AC 522 ms
11,008 KB
testcase_59 AC 519 ms
11,136 KB
testcase_60 AC 522 ms
10,880 KB
testcase_61 AC 515 ms
11,008 KB
testcase_62 AC 502 ms
11,008 KB
testcase_63 AC 522 ms
11,008 KB
testcase_64 AC 514 ms
11,008 KB
testcase_65 AC 509 ms
11,008 KB
testcase_66 AC 126 ms
5,248 KB
testcase_67 AC 453 ms
11,008 KB
testcase_68 AC 510 ms
11,008 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;
ll modpow(ll a, ll b) {
	ll p = 1, q = a;
	rep(i, 63) {
		if (b & (1LL<<i)) p = p * q % mod;
		q = q * q % mod;
	}
	return p;
}

int main() {
	int n, q;
	cin >> n >> q;
	vector<int> a(n);
	rep(i, n) cin >> a[i];
	vector<ll> two(n+1), itwo(n+1), c(n), csum(n+1);
	two[0] = 1;
	rep(i, n) two[i+1] = two[i] * 2 % mod;
	itwo[n] = modpow(two[n], mod-2);
	repr(i, n) itwo[i] = itwo[i+1] * 2 % mod;
	rep(i, n) c[i] = two[i] * a[i] % mod;
	rep(i, n) csum[i+1] = (csum[i] + c[i]) % mod;
	vector<int> lids(n);
	int lid = 0;
	rep3(i, 1, n) {
		if (a[i] <= a[i-1]) lid = i;
		lids[i] = lid;
	}
	rep(i, q) {
		int li, ri;
		cin >> li >> ri;
		--li; --ri;
		ll res = 0;
		if (lids[ri] >= li) res = ((csum[ri+1] - csum[lids[ri]+1] + mod) % mod * itwo[lids[ri]+1] + a[lids[ri]]) % mod;
		else res = ((csum[ri+1] - csum[li+1] + mod) % mod * itwo[li+1] + a[li]) % mod;
		cout << res << endl;
	}
	return 0;
}
0