-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA_Divide_and_Conquer.cpp
More file actions
63 lines (61 loc) · 997 Bytes
/
Copy pathA_Divide_and_Conquer.cpp
File metadata and controls
63 lines (61 loc) · 997 Bytes
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
#include <bits/stdc++.h>
#define ll long long int
#define endl "\n"
using namespace std;
// long long int a, b;
void solve()
{
int n;
cin >> n;
vector<int> v(n), odd, even;
ll sum = 0;
for (auto &i : v)
{
cin >> i;
sum += i;
if (i & 1)
odd.push_back(i);
else
even.push_back(i);
}
if (sum % 2 == 0)
{
cout << 0 << endl;
return;
}
int ans = INT_MAX;
for (auto x : odd)
{
int cnt = 0;
while (x & 1)
{
x /= 2;
cnt++;
}
ans = min(ans, cnt);
}
for (auto x : even)
{
int cnt = 0;
while (x % 2 == 0)
{
x /= 2;
cnt++;
}
ans = min(ans, cnt);
}
cout << ans << endl;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
t = 1;
cin >> t;
while (t--)
{
solve();
}
return 0;
}