【CodeForces 980D】Perfect Groups / 题解

【CodeForces 980D】Perfect Groups / 题解

原题地址

题目描述

注意: 不易于人类理解题意,所以我就不翻译了

SaMer has written the greatest test case of all time for one of his problems. For a given array of integers, the problem asks to find the minimum number of groups the array can be divided into, such that the product of any pair of integers in the same group is a perfect square.

Each integer must be in exactly one group. However, integers in a group do not necessarily have to be contiguous in the array.

SaMer wishes to create more cases from the test case he already has. His test case has an array $A$ of $n$ integers, and he needs to find the number of contiguous subarrays of $A$ that have an answer to the problem equal to $k$ for each integer $k$ between $1$ and $n$ (inclusive).

Input

The first line of input contains a single integer $n$($1 leq n leq 5000$), the size of the array.

The second line contains $n$ integers $a_1$,$a_2$,$dots$,$a_n$ ($-10^8 leq a_i leq 10^8$), the values of the array.

Output

Output $n$ space-separated integers, the $k$-th integer should be the number of contiguous subarrays of $A$ that have an answer to the problem equal to $k$.

Examples
Input
2
5 5
Output
3 0

Idea

显然如果有一个数字包含完全平方数因数,抹掉这个因数对答案不会产生任何影响。根据这一点,我们可以直接除去所有数字的完全平方数因数,一个序列的答案就是这个序列里的数字种类。注意要特殊处理一下 0,因为他2可以被放置在任何一个序列中。

Code

#include 
#define maxn 50005
using namespace std;
void cut(int &x){
    int flag=1;
    if (x<0) flag=-1;
    x=abs(x);
    for (int i=2;(i*i)<=x;i++)
        while (x%(i*i)==0)
            x/=(i*i);
    x*=flag;
}
int n,a[maxn],b[maxn],ans[maxn],vis[maxn],cnt;
map  mp;
int main(){
    ios::sync_with_stdio(false);
    cin>>n;
    for (int i=1;i<=n;i++){
        cin>>a[i];cut(a[i]);
        if (!mp[a[i]]) mp[a[i]]=++cnt;
        b[i]=mp[a[i]];
    }
    for (int i=1;i<=n;i++){
        memset(vis,0,sizeof(vis));int tot=0;
        for (int j=i;j<=n;j++){
            if (!a[j]){
                if (!tot) ans[1]++;
                else ans[tot]++;
            }
            else{
                if (!vis[b[j]]) vis[b[j]]=1,tot++;
                ans[tot]++;
            }
        }
    }
    for (int i=1;i<=n;i++)
        cout<