forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
C_Great_Sequence.cpp
147 lines (144 loc) Β· 2.62 KB
/
C_Great_Sequence.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//πππππππ€β£β£β£β£β£dark_coderβ£β£β£β£β£π€ππππππ
#include <bits/stdc++.h>
using namespace std;
#define IOS \
ios::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define li long long int
#define pi pair<int, int>
#define lcm(a, b) (a / __gcd(a, b) * b)
#define ld long double
const long long INF = 1e9 + 7;
const long long MOD = 998244353;
#ifndef ONLINE_JUDGE
#define debug(x) \
cerr << #x << " "; \
_print(x); \
cerr << endl;
#else
#define debug(x)
#endif
void _print(int t)
{
cerr << t;
}
void _print(ld t) { cerr << t; }
void _print(string t) { cerr << t; }
void _print(char t) { cerr << t; }
void _print(double t) { cerr << t; }
template <class T, class V>
void _print(pair<T, V> p)
{
cerr << "{";
_print(p.ff);
cerr << ",";
_print(p.ss);
cerr << "}";
}
template <class T>
void _print(vector<T> v)
{
cerr << "[ ";
for (T i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
template <class T>
void _print(set<T> v)
{
cerr << "[ ";
for (T i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
template <class T>
void _print(multiset<T> v)
{
cerr << "[ ";
for (T i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
template <class T, class V>
void _print(map<T, V> v)
{
cerr << "[ ";
for (auto i : v)
{
_print(i);
cerr << " ";
}
cerr << "]";
}
long long power(long long a, long long b)
{
long ans = 1;
while (b > 0)
{
if (b & 1)
ans = (ans * a) % INF;
a = (a * a) % INF;
b >>= 1;
}
return ans % INF;
}
int hi = 0;
int solve()
{
// cout<<hi++<<endl;
li n, k;
cin >> n >> k;
multiset<li> s;
for (li i = 0; i < n; i++)
{
li t;
cin >> t;
s.insert(t);
}
li cnt = 0;
while (n > 0)
{
auto it = s.begin();
li i = *it;
auto it2 = s.find(i * k);
// debug(i)
// debug(s)
if (it2 != s.end())
{
s.erase(it2);
s.erase(it);
n -= 2;
}
else
{
cnt++;
s.erase(it);
n--;
}
}
cout
<< cnt << endl;
return 0;
}
int main()
{
IOS li t;
cin >> t;
while (t--)
{
// cout<<t+1<<endl;
solve();
}
return 0;
}