結果
問題 | No.2300 Substring OR Sum |
ユーザー |
|
提出日時 | 2023-05-14 03:45:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 106 ms / 2,000 ms |
コード長 | 1,032 bytes |
コンパイル時間 | 1,868 ms |
コンパイル使用メモリ | 198,588 KB |
最終ジャッジ日時 | 2025-02-13 00:24:40 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
/** * - Meet Brahmbhatt * - Hard work always pays off **/ #include"bits/stdc++.h" using namespace std; #ifdef MeetBrahmbhatt #include "debug.h" #else #define dbg(...) 72 #endif #define endl "\n" #define int long long const long long INF = 4e18; const int32_t M = 1e9 + 7; const int32_t MM = 998244353; void solve() { int n; cin >> n; vector<int> v(n); for (int i = 0; i < n; i++) { cin >> v[i]; } vector<vector<int>> b(n + 1, vector<int>(30, n)); for (int i = n - 1; i >= 0; i--) { b[i] = b[i + 1]; for (int j = 0; j < 30; j++) { if (v[i] >> j & 1) { b[i][j] = i; } } } int ans = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < 30; j++) { ans += (1 << j) * (n - b[i][j]); } } cout << ans; } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(9); int tt = 1; // cin >> tt; while (tt--) solve(); return 0; }