A14046 | Apollo versus Pan
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Only a few know that Pan and Apollo weren't only battling for the title of the GOAT musician. A few millenniums later, they also challenged each other in math (or rather in fast calculations). The task they got to solve is the following:
Let $x_1, x_2, \ldots, x_n$ be the sequence of $n$ non-negative integers. Find this value: $$$$\sum_{i=1}^n \sum_{j=1}^n \sum_{k=1}^n (x_i \, \& \, x_j) \cdot (x_j \, | \, x_k) $$ </p><p>Here $\\&$ denotes the <a href="https://en.wikipedia.org/wiki/Bitwise_operation#AND">bitwise and,</a> and $|$ denotes the <a href="https://en.wikipedia.org/wiki/Bitwise_operation#OR">bitwise or.</a></p><p>Pan and Apollo could solve this in a few seconds. Can you do it too? For convenience, find the answer modulo $10^9 + 7$$$.
Let $x_1, x_2, \ldots, x_n$ be the sequence of $n$ non-negative integers. Find this value: $$$$\sum_{i=1}^n \sum_{j=1}^n \sum_{k=1}^n (x_i \, \& \, x_j) \cdot (x_j \, | \, x_k) $$ </p><p>Here $\\&$ denotes the <a href="https://en.wikipedia.org/wiki/Bitwise_operation#AND">bitwise and,</a> and $|$ denotes the <a href="https://en.wikipedia.org/wiki/Bitwise_operation#OR">bitwise or.</a></p><p>Pan and Apollo could solve this in a few seconds. Can you do it too? For convenience, find the answer modulo $10^9 + 7$$$.
输入格式
The first line of the input contains a single integer $t$ ( $1 \leq t \leq 1\,000$ ) denoting the number of test cases, then $t$ test cases follow.
The first line of each test case consists of a single integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ), the length of the sequence. The second one contains $n$ non-negative integers $x_1, x_2, \ldots, x_n$ ( $0 \leq x_i < 2^{60}$ ), elements of the sequence.
The sum of $n$ over all test cases will not exceed $5 \cdot 10^5$ .
The first line of each test case consists of a single integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ), the length of the sequence. The second one contains $n$ non-negative integers $x_1, x_2, \ldots, x_n$ ( $0 \leq x_i < 2^{60}$ ), elements of the sequence.
The sum of $n$ over all test cases will not exceed $5 \cdot 10^5$ .
输出格式
Print $t$ lines. The $i$ -th line should contain the answer to the $i$ -th text case.
输入输出样例
输入 #1
8 2 1 7 3 1 2 4 4 5 5 5 5 5 6 2 2 1 0 1 0 1 1 6 1 12 123 1234 12345 123456 5 536870912 536870911 1152921504606846975 1152921504606846974 1152921504606846973
输出 #1
128 91 1600 505 0 1 502811676 264880351
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted