A11075 | Random Elections
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The presidential election is coming in Bearland next year! Everybody is so excited about this!
So far, there are three candidates, Alice, Bob, and Charlie.
There are $n$ citizens in Bearland. The election result will determine the life of all citizens of Bearland for many years. Because of this great responsibility, each of $n$ citizens will choose one of six orders of preference between Alice, Bob and Charlie uniformly at random, independently from other voters.
The government of Bearland has devised a function to help determine the outcome of the election given the voters preferences. More specifically, the function is  (takes $n$ boolean numbers and returns a boolean number). The function also obeys the following property: $f(1-x_{1},1-x_{2},...,1-x_{n})=1-f(x_{1},x_{2},...,x_{n})$ .
Three rounds will be run between each pair of candidates: Alice and Bob, Bob and Charlie, Charlie and Alice. In each round, $x_{i}$ will be equal to $1$ , if $i$ -th citizen prefers the first candidate to second in this round, and $0$ otherwise. After this, $y=f(x_{1},x_{2},...,x_{n})$ will be calculated. If $y=1$ , the first candidate will be declared as winner in this round. If $y=0$ , the second will be the winner, respectively.
Define the probability that there is a candidate who won two rounds as $p$ . $p·6^{n}$ is always an integer. Print the value of this integer modulo $10^{9}+7=1\ 000\ 000\ 007$ .
So far, there are three candidates, Alice, Bob, and Charlie.
There are $n$ citizens in Bearland. The election result will determine the life of all citizens of Bearland for many years. Because of this great responsibility, each of $n$ citizens will choose one of six orders of preference between Alice, Bob and Charlie uniformly at random, independently from other voters.
The government of Bearland has devised a function to help determine the outcome of the election given the voters preferences. More specifically, the function is  (takes $n$ boolean numbers and returns a boolean number). The function also obeys the following property: $f(1-x_{1},1-x_{2},...,1-x_{n})=1-f(x_{1},x_{2},...,x_{n})$ .
Three rounds will be run between each pair of candidates: Alice and Bob, Bob and Charlie, Charlie and Alice. In each round, $x_{i}$ will be equal to $1$ , if $i$ -th citizen prefers the first candidate to second in this round, and $0$ otherwise. After this, $y=f(x_{1},x_{2},...,x_{n})$ will be calculated. If $y=1$ , the first candidate will be declared as winner in this round. If $y=0$ , the second will be the winner, respectively.
Define the probability that there is a candidate who won two rounds as $p$ . $p·6^{n}$ is always an integer. Print the value of this integer modulo $10^{9}+7=1\ 000\ 000\ 007$ .
输入格式
The first line contains one integer $n$ ( $1<=n<=20$ ).
The next line contains a string of length $2^{n}$ of zeros and ones, representing function $f$ . Let $b_{k}(x)$ the $k$ -th bit in binary representation of $x$ , $i$ -th (0-based) digit of this string shows the return value of $f(b_{1}(i),b_{2}(i),...,b_{n}(i))$ .
It is guaranteed that $f(1-x_{1},1-x_{2},...,1-x_{n})=1-f(x_{1},x_{2},...,x_{n})$ for any values of $x_{1},x_{2},ldots,x_{n}$ .
The next line contains a string of length $2^{n}$ of zeros and ones, representing function $f$ . Let $b_{k}(x)$ the $k$ -th bit in binary representation of $x$ , $i$ -th (0-based) digit of this string shows the return value of $f(b_{1}(i),b_{2}(i),...,b_{n}(i))$ .
It is guaranteed that $f(1-x_{1},1-x_{2},...,1-x_{n})=1-f(x_{1},x_{2},...,x_{n})$ for any values of $x_{1},x_{2},ldots,x_{n}$ .
输出格式
Output one integer — answer to the problem.
输入输出样例
输入 #1
3 01010101
输出 #1
216
输入 #2
3 01101001
输出 #2
168
In first sample, result is always fully determined by the first voter. In other words, $f(x_{1},x_{2},x_{3})=x_{1}$ . Thus, any no matter what happens, there will be a candidate who won two rounds (more specifically, the candidate who is at the top of voter 1's preference list), so $p=1$ , and we print $1·6^{3}=216$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted