A12979 | Divisor Set
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an integer $x$ represented as a product of $n$ its prime divisors $p_1 \cdot p_2, \cdot \ldots \cdot p_n$ . Let $S$ be the set of all positive integer divisors of $x$ (including $1$ and $x$ itself).
We call a set of integers $D$ good if (and only if) there is no pair $a \in D$ , $b \in D$ such that $a \ne b$ and $a$ divides $b$ .
Find a good subset of $S$ with maximum possible size. Since the answer can be large, print the size of the subset modulo $998244353$ .
We call a set of integers $D$ good if (and only if) there is no pair $a \in D$ , $b \in D$ such that $a \ne b$ and $a$ divides $b$ .
Find a good subset of $S$ with maximum possible size. Since the answer can be large, print the size of the subset modulo $998244353$ .
输入格式
The first line contains the single integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the number of prime divisors in representation of $x$ .
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ ( $2 \le p_i \le 3 \cdot 10^6$ ) — the prime factorization of $x$ .
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ ( $2 \le p_i \le 3 \cdot 10^6$ ) — the prime factorization of $x$ .
输出格式
Print the maximum possible size of a good subset modulo $998244353$ .
输入输出样例
输入 #1
3 2999999 43 2999957
输出 #1
3
输入 #2
6 2 3 2 3 2 2
输出 #2
3
In the first sample, $x = 2999999 \cdot 43 \cdot 2999957$ and one of the maximum good subsets is $\{ 43, 2999957, 2999999 \}$ .
In the second sample, $x = 2 \cdot 3 \cdot 2 \cdot 3 \cdot 2 \cdot 2 = 144$ and one of the maximum good subsets is $\{ 9, 12, 16 \}$ .
In the second sample, $x = 2 \cdot 3 \cdot 2 \cdot 3 \cdot 2 \cdot 2 = 144$ and one of the maximum good subsets is $\{ 9, 12, 16 \}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted