CF274A.k-Multiple Free Set

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A kk -multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by kk . That is, there are no two integers xx and yy (x<y)(x<y) from the set, such that y=xky=x·k .

You're given a set of nn distinct positive integers. Your task is to find the size of it's largest kk -multiple free subset.

输入格式

The first line of the input contains two integers nn and kk ( 1<=n<=105,1<=k<=1091<=n<=10^{5},1<=k<=10^{9} ). The next line contains a list of nn distinct positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=109)(1<=a_{i}<=10^{9}) .

All the numbers in the lines are separated by single spaces.

输出格式

On the only line of the output print the size of the largest kk -multiple free subset of a1,a2,...,an{a_{1},a_{2},...,a_{n}} .

输入输出样例

  • 输入#1

    6 2
    2 3 6 5 4 10
    

    输出#1

    3
    

说明/提示

In the sample input one of the possible maximum 2-multiple free subsets is {4, 5, 6}.

首页