A12566 | Steps to One
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vivek initially has an empty array $a$ and some integer constant $m$ .
He performs the following algorithm:
1. Select a random integer $x$ uniformly in range from $1$ to $m$ and append it to the end of $a$ .
2. Compute the greatest common divisor of integers in $a$ .
3. In case it equals to $1$ , break
4. Otherwise, return to step $1$ .
Find the expected length of $a$ . It can be shown that it can be represented as $\frac{P}{Q}$ where $P$ and $Q$ are coprime integers and $Q\neq 0 \pmod{10^9+7}$ . Print the value of $P \cdot Q^{-1} \pmod{10^9+7}$ .
He performs the following algorithm:
1. Select a random integer $x$ uniformly in range from $1$ to $m$ and append it to the end of $a$ .
2. Compute the greatest common divisor of integers in $a$ .
3. In case it equals to $1$ , break
4. Otherwise, return to step $1$ .
Find the expected length of $a$ . It can be shown that it can be represented as $\frac{P}{Q}$ where $P$ and $Q$ are coprime integers and $Q\neq 0 \pmod{10^9+7}$ . Print the value of $P \cdot Q^{-1} \pmod{10^9+7}$ .
输入格式
The first and only line contains a single integer $m$ ( $1 \leq m \leq 100000$ ).
输出格式
Print a single integer — the expected length of the array $a$ written as $P \cdot Q^{-1} \pmod{10^9+7}$ .
输入输出样例
输入 #1
1
输出 #1
1
输入 #2
2
输出 #2
2
输入 #3
4
输出 #3
333333338
In the first example, since Vivek can choose only integers from $1$ to $1$ , he will have $a=[1]$ after the first append operation, and after that quit the algorithm. Hence the length of $a$ is always $1$ , so its expected value is $1$ as well.
In the second example, Vivek each time will append either $1$ or $2$ , so after finishing the algorithm he will end up having some number of $2$ 's (possibly zero), and a single $1$ in the end. The expected length of the list is $1\cdot \frac{1}{2} + 2\cdot \frac{1}{2^2} + 3\cdot \frac{1}{2^3} + \ldots = 2$ .
In the second example, Vivek each time will append either $1$ or $2$ , so after finishing the algorithm he will end up having some number of $2$ 's (possibly zero), and a single $1$ in the end. The expected length of the list is $1\cdot \frac{1}{2} + 2\cdot \frac{1}{2^2} + 3\cdot \frac{1}{2^3} + \ldots = 2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted