码迷,mamicode.com
首页 > 其他好文 > 详细

【Good Bye 2020 E】Apollo versus Pan

时间:2021-02-17 14:16:18      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:loading   +=   stdin   代码   cout   clu   技术   blank   个数   

题目链接

链接

翻译

题意很简单,让你求题目描述中那个离谱的式子。

题解

大概就是这样做了一下变换

技术图片

然后我们就可以固定 \(j\),问题转换成快速求解 \(\sum_{i=1}^n(x_j\ \&\ x_i)\)\(\sum_{i=1}^n(xj\ |\ xi)\)

如果我们设 \(f(i,j)\) 表示 \(i\) 这个数字的二进制从右往左数的第 \(j\)\(bit\) 上的数字。

那么就有如下转换(\(M\)表示 \(x\) 的二进制表示位数最大值),一位一位地进行求解:

技术图片

则问题变成求解 \(n\) 个数字的二进制上第 \(j\)\(1\)\(60\) 位的数字之和。

相反数的话用 \(n\) 去减一下就可以了。

时间有点紧张, 运行出来的时候 1993ms _(:з」∠)_

代码

#include <bits/stdc++.h>
#define LL long long
using namespace std;
 
const int N = 5e5;
const int MOD = 1e9 + 7;
 
int T, n;
int v[N+10][60+10];
int sum[60 + 10];
 
int main() {
	#ifdef LOCAL_DEFINE
		freopen("in.txt", "r", stdin);
	#endif
	ios::sync_with_stdio(0), cin.tie(0);
	cin >> T;
	while (T--){
        cin >> n;
        for (int i = 1;i <= n; i++){
            LL x;
            cin >> x;
            int j = 0;
            while (x > 0){
                v[i][j] = x%2;
                x /= 2;
                j++;
            }
            while (j < 60){
                v[i][j++] = 0;
            }
        }
        for (int j = 0;j < 60; j++){
            sum[j] = 0;
            for (int i = 1;i <= n; i++){
                sum[j] += v[i][j];
            }
        }
        LL ans = 0;
        for (int i = 1;i <= n; i++){
            LL pow2 = 1;
            LL temp1 = 0;
            LL temp2 = 0;
            for (int j = 0;j < 60; j++){
                temp1 += pow2*v[i][j]%MOD*sum[j]%MOD;
                temp2 += pow2*(n-(1-v[i][j])*(n-sum[j])%MOD)%MOD;
                temp1 %= MOD;
                temp2 = (temp2+MOD)%MOD;
                pow2 = pow2*2%MOD;
            }
            temp1 = temp1*temp2%MOD;
            ans = (ans + temp1)%MOD;
        }
        cout << ans << endl;
	}
	return 0;
}

【Good Bye 2020 E】Apollo versus Pan

标签:loading   +=   stdin   代码   cout   clu   技术   blank   个数   

原文地址:https://www.cnblogs.com/AWCXV/p/14401481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!