結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-19 13:33:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 503 ms / 6,000 ms
コード長 979 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 205,528 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-11-14 23:06:46
合計ジャッジ時間 10,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
14,568 KB
testcase_01 AC 19 ms
14,592 KB
testcase_02 AC 19 ms
14,592 KB
testcase_03 AC 20 ms
14,592 KB
testcase_04 AC 19 ms
14,448 KB
testcase_05 AC 19 ms
14,592 KB
testcase_06 AC 21 ms
14,464 KB
testcase_07 AC 21 ms
14,476 KB
testcase_08 AC 21 ms
14,460 KB
testcase_09 AC 21 ms
14,392 KB
testcase_10 AC 20 ms
14,576 KB
testcase_11 AC 181 ms
14,476 KB
testcase_12 AC 432 ms
14,508 KB
testcase_13 AC 452 ms
14,572 KB
testcase_14 AC 198 ms
14,400 KB
testcase_15 AC 125 ms
14,456 KB
testcase_16 AC 403 ms
14,464 KB
testcase_17 AC 86 ms
14,464 KB
testcase_18 AC 288 ms
14,396 KB
testcase_19 AC 503 ms
14,432 KB
testcase_20 AC 114 ms
14,396 KB
testcase_21 AC 404 ms
14,548 KB
testcase_22 AC 420 ms
14,400 KB
testcase_23 AC 162 ms
14,376 KB
testcase_24 AC 18 ms
14,516 KB
testcase_25 AC 18 ms
14,572 KB
testcase_26 AC 321 ms
14,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

#include <atcoder/segtree>
using namespace atcoder;
struct S {
	long long sum;
	int size;
};
S op(S a, S b) { return S{a.sum + b.sum, a.size + b.size}; }
S e() { return S{0, 0}; }
int main() {
	fast_io();
	int n, q, l0;
	cin >> n >> q >> l0;
	segtree<S, op, e> seg(200001);
	int cnt[200001] = {};
	for (int i = 0; i < n; i++) {
		int a;
		cin >> a;
		cnt[a]++;
	}
	for (int i = 0; i < 200001; i++) {
		seg.set(i, S{1LL * i * cnt[i], cnt[i]});
	}
	int q2_cnt = 0;
	for (; q--;) {
		int com;
		cin >> com;
		if (com == 1) {
			int l;
			cin >> l;
			cnt[l]++;
			seg.set(l, S{1LL * l * cnt[l], cnt[l]});
		}
		if (com == 2) {
			q2_cnt++;
			int l, r;
			cin >> l >> r;
			auto ans = seg.prod(l, r + 1);
			cout << ans.size << " " << ans.sum << "\n";
		}
		if (com == 3) {
			int m;
			cin >> m;
		}
	}
	if (q2_cnt == 0) {
		cout << "Not Found!" << endl;
	}
}
0