CF1516D.Cut
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 al,al+1,…,ar 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).
Formally, he partitions the elements of al,al+1,…,ar 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≤n,q≤105 ) — the length of the array a and the number of queries.
The next line contains n integers a1 , a2 , … , an ( 1≤ai≤105 ) — the elements of the array a .
Each of the next q lines contains 2 integers l and r ( 1≤l≤r≤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] .