A12029 | Linear Congruential Generator
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a tuple generator $f^{(k)} = (f_1^{(k)}, f_2^{(k)}, \dots, f_n^{(k)})$ , where $f_i^{(k)} = (a_i \cdot f_i^{(k - 1)} + b_i) \bmod p_i$ and $f^{(0)} = (x_1, x_2, \dots, x_n)$ . Here $x \bmod y$ denotes the remainder of $x$ when divided by $y$ . All $p_i$ are primes.
One can see that with fixed sequences $x_i$ , $y_i$ , $a_i$ the tuples $f^{(k)}$ starting from some index will repeat tuples with smaller indices. Calculate the maximum number of different tuples (from all $f^{(k)}$ for $k \ge 0$ ) that can be produced by this generator, if $x_i$ , $a_i$ , $b_i$ are integers in the range $[0, p_i - 1]$ and can be chosen arbitrary. The answer can be large, so print the remainder it gives when divided by $10^9 + 7$
One can see that with fixed sequences $x_i$ , $y_i$ , $a_i$ the tuples $f^{(k)}$ starting from some index will repeat tuples with smaller indices. Calculate the maximum number of different tuples (from all $f^{(k)}$ for $k \ge 0$ ) that can be produced by this generator, if $x_i$ , $a_i$ , $b_i$ are integers in the range $[0, p_i - 1]$ and can be chosen arbitrary. The answer can be large, so print the remainder it gives when divided by $10^9 + 7$
输入格式
The first line contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the number of elements in the tuple.
The second line contains $n$ space separated prime numbers — the modules $p_1, p_2, \ldots, p_n$ ( $2 \le p_i \le 2 \cdot 10^6$ ).
The second line contains $n$ space separated prime numbers — the modules $p_1, p_2, \ldots, p_n$ ( $2 \le p_i \le 2 \cdot 10^6$ ).
输出格式
Print one integer — the maximum number of different tuples modulo $10^9 + 7$ .
输入输出样例
输入 #1
4 2 3 5 7
输出 #1
210
输入 #2
3 5 3 3
输出 #2
30
In the first example we can choose next parameters: $a = [1, 1, 1, 1]$ , $b = [1, 1, 1, 1]$ , $x = [0, 0, 0, 0]$ , then $f_i^{(k)} = k \bmod p_i$ .
In the second example we can choose next parameters: $a = [1, 1, 2]$ , $b = [1, 1, 0]$ , $x = [0, 0, 1]$ .
In the second example we can choose next parameters: $a = [1, 1, 2]$ , $b = [1, 1, 0]$ , $x = [0, 0, 1]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted