結果

問題 No.2300 Substring OR Sum
ユーザー FplusFplusFFplusFplusF
提出日時 2023-05-12 21:45:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 205,676 KB
実行使用メモリ 100,300 KB
最終ジャッジ日時 2024-05-06 11:33:31
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 102 ms
30,256 KB
testcase_04 AC 82 ms
25,596 KB
testcase_05 AC 100 ms
31,260 KB
testcase_06 AC 52 ms
17,536 KB
testcase_07 AC 351 ms
96,012 KB
testcase_08 AC 140 ms
41,420 KB
testcase_09 AC 115 ms
33,784 KB
testcase_10 AC 274 ms
75,100 KB
testcase_11 AC 310 ms
87,316 KB
testcase_12 AC 360 ms
96,892 KB
testcase_13 AC 166 ms
100,300 KB
testcase_14 AC 264 ms
100,168 KB
testcase_15 AC 147 ms
43,860 KB
testcase_16 AC 272 ms
75,348 KB
testcase_17 AC 337 ms
94,372 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<ll> a(n);
    vector<vector<ll>> v(30,vector<ll>(n,0));
    rep(i,n){
        cin >> a[i];
        rep(j,30){
            if(a[i]&(1<<j)) v[j][i]++;
        }
    }
    vector<vector<ll>> sum(30,vector<ll>(n+1,0));
    rep(i,n){
        rep(j,30){
            sum[j][i+1]=sum[j][i]+v[j][i];
        }
    }
    ll ans=0;
    rep(i,n){
        rep(j,30){
            if(a[i]&(1<<j)) ans+=(1<<j)*(n-i);
            else{
                ll p=upper_bound(all(sum[j]),sum[j][i])-sum[j].begin();
                ans+=(1<<j)*(n+1-p);
            }
        }
    }
    cout << ans << '\n';
}
0