結果

問題 No.2300 Substring OR Sum
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-08 00:45:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 6,480 KB
最終ジャッジ日時 2024-11-08 00:45:52
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 35 ms
5,248 KB
testcase_04 AC 30 ms
5,248 KB
testcase_05 AC 37 ms
5,248 KB
testcase_06 AC 19 ms
5,248 KB
testcase_07 AC 125 ms
6,480 KB
testcase_08 AC 54 ms
5,248 KB
testcase_09 AC 39 ms
5,248 KB
testcase_10 AC 100 ms
5,924 KB
testcase_11 AC 119 ms
6,164 KB
testcase_12 AC 130 ms
6,360 KB
testcase_13 AC 74 ms
5,748 KB
testcase_14 AC 61 ms
5,748 KB
testcase_15 AC 56 ms
5,248 KB
testcase_16 AC 103 ms
5,936 KB
testcase_17 AC 124 ms
6,340 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

int main() {
	fast_io();
	int n;
	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	long long ans = 0;
	for (int i = 0; i < 28; i++) {
		vector<int> b;
		for (int j = 0; j < n; j++) {
			b.push_back((a[j] >> i) & 1);
		}
		long long tmp = (long long)n * (n + 1) / 2;
		vector<pair<int, int>> rle;
		for (int j : b) {
			if (rle.empty() || rle.back().first != j) {
				rle.push_back({j, 1});
			} else {
				rle.back().second++;
			}
		}
		for (auto [j, k] : rle) {
			if (j == 0) {
				tmp -= (long long)k * (k + 1) / 2;
			}
		}
		ans += tmp << i;
	}
	cout << ans << endl;
}
0