A14193 | Cut
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This time Baby Ehab will only cut and not stick. He starts with a piece of paper with an array $a$ of length $n$ written on it, and then he does the following:
- he picks a range $(l, r)$ and cuts the subsegment $a_l, a_{l + 1}, \ldots, a_r$ out, removing the rest of the array.
- he then cuts this range into multiple subranges.
- to add a number theory spice to it, he requires that the elements of every subrange must have their product equal to their [least common multiple (LCM)](https://en.wikipedia.org/wiki/Least_common_multiple).
Formally, he partitions the elements of $a_l, a_{l + 1}, \ldots, a_r$ into contiguous subarrays such that the product of every subarray is equal to its LCM. Now, for $q$ independent ranges $(l, r)$ , tell Baby Ehab the minimum number of subarrays he needs.
- he picks a range $(l, r)$ and cuts the subsegment $a_l, a_{l + 1}, \ldots, a_r$ out, removing the rest of the array.
- he then cuts this range into multiple subranges.
- to add a number theory spice to it, he requires that the elements of every subrange must have their product equal to their [least common multiple (LCM)](https://en.wikipedia.org/wiki/Least_common_multiple).
Formally, he partitions the elements of $a_l, a_{l + 1}, \ldots, a_r$ into contiguous subarrays such that the product of every subarray is equal to its LCM. Now, for $q$ independent ranges $(l, r)$ , tell Baby Ehab the minimum number of subarrays he needs.
输入格式
The first line contains $2$ integers $n$ and $q$ ( $1 \le n,q \le 10^5$ ) — the length of the array $a$ and the number of queries.
The next line contains $n$ integers $a_1$ , $a_2$ , $\ldots$ , $a_n$ ( $1 \le a_i \le 10^5$ ) — the elements of the array $a$ .
Each of the next $q$ lines contains $2$ integers $l$ and $r$ ( $1 \le l \le r \le n$ ) — the endpoints of this query's interval.
The next line contains $n$ integers $a_1$ , $a_2$ , $\ldots$ , $a_n$ ( $1 \le a_i \le 10^5$ ) — the elements of the array $a$ .
Each of the next $q$ lines contains $2$ integers $l$ and $r$ ( $1 \le l \le r \le n$ ) — the endpoints of this query's interval.
输出格式
For each query, print its answer on a new line.
输入输出样例
输入 #1
6 3 2 3 10 7 5 14 1 6 2 4 3 5
输出 #1
3 1 2
The first query asks about the whole array. You can partition it into $[2]$ , $[3,10,7]$ , and $[5,14]$ . The first subrange has product and LCM equal to $2$ . The second has product and LCM equal to $210$ . And the third has product and LCM equal to $70$ . Another possible partitioning is $[2,3]$ , $[10,7]$ , and $[5,14]$ .
The second query asks about the range $(2,4)$ . Its product is equal to its LCM, so you don't need to partition it further.
The last query asks about the range $(3,5)$ . You can partition it into $[10,7]$ and $[5]$ .
The second query asks about the range $(2,4)$ . Its product is equal to its LCM, so you don't need to partition it further.
The last query asks about the range $(3,5)$ . You can partition it into $[10,7]$ and $[5]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted