結果
問題 | No.2300 Substring OR Sum |
ユーザー | HIcoder |
提出日時 | 2023-07-06 18:26:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 1,657 bytes |
コンパイル時間 | 1,138 ms |
コンパイル使用メモリ | 106,884 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-07-20 13:48:55 |
合計ジャッジ時間 | 3,941 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 40 ms
6,656 KB |
testcase_04 | AC | 33 ms
6,144 KB |
testcase_05 | AC | 41 ms
6,784 KB |
testcase_06 | AC | 21 ms
5,376 KB |
testcase_07 | AC | 135 ms
14,824 KB |
testcase_08 | AC | 60 ms
8,064 KB |
testcase_09 | AC | 44 ms
7,040 KB |
testcase_10 | AC | 107 ms
12,480 KB |
testcase_11 | AC | 120 ms
13,864 KB |
testcase_12 | AC | 133 ms
14,932 KB |
testcase_13 | AC | 124 ms
26,752 KB |
testcase_14 | AC | 35 ms
5,376 KB |
testcase_15 | AC | 60 ms
8,192 KB |
testcase_16 | AC | 106 ms
12,480 KB |
testcase_17 | AC | 133 ms
14,636 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 | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; const double PI=acos(-1); ll mod_pow(ll x,ll y,ll mod){ ll power=x; ll ret = 1; while(y>0){ if(y&1){ ret = ret*power%mod; } power = power*power%mod; y = y>>1; } return ret; } int main() { int N; cin>>N; vector<int> A(N+1); for(int i=1;i<=N;i++){ cin>>A[i]; } vector<vector<int>> d(30); for(int k=0;k<30;k++){ d[k].push_back(0); for(int i=1;i<=N;i++){ if(((A[i]>>k)&1)==1){ d[k].push_back(i); } } d[k].push_back(N+1); } vector<ll> pow2(30,0); pow2[0]=1; for(int i=1;i<30;i++){ pow2[i]=pow2[i-1]*2; } auto f=[&](ll len){ ll res=1LL*len; res*=(len+1); res/=2; return res; }; ll ans=0; for(int k=0;k<30;k++){ ll sumrange=f(N); for(int j=0;j+1<d[k].size();j++){ int c1=d[k][j]+1; int c2=d[k][j+1]-1; //(d[k][j],d[k][j+1])=[ d[k][j]+1,d[k][j+1]-1]=[c1,c2] if(c1>c2) continue; int len=c2-c1+1; ll range=f(len); sumrange-=range; } //cout<<"k="<<k<<",sumrange="<<sumrange<<endl; ans+=sumrange*pow2[k]; } cout<<ans<<endl; }