forked from shreyamalogi/DSA-BOOK
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path074_min no of flips.cpp
73 lines (61 loc) · 1.03 KB
/
074_min no of flips.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
//author :shreyamalogi
/*
implimentation : flip every 1 with 0 and 0 with 1
take the min
*/
#include <iostream>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
string s;
cin>>s;
int n=s.size();
int count1=0; //toggle 1
for(int i=0;i<n;i++)
{
if(i%2==0)
{
if(s[i]!='1')
{
count1++;
}
}
else
{
if(s[i]!='0')
{
count1++;
}
}
}
int count2=0; //toggle 2
for(int i=0;i<n;i++)
{
if(i%2==0)
{
if(s[i]!='0')
{
count2++;
}
}
else
{
if(s[i]!='1')
{
count2++;
}
}
}
cout<<min(count1,count2)<<endl;
}
return 0;
}
//2
//001
//1
//0001010111
//2