forked from smv1999/CompetitiveProgrammingQuestionBank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSilverAndGold.java
More file actions
61 lines (50 loc) · 1.42 KB
/
SilverAndGold.java
File metadata and controls
61 lines (50 loc) · 1.42 KB
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
/* ************
Problem statement:
SILVER AND GOLD
There are N coins kept in a line.
Each coin has two sides - one is colored gold
and the other silver. You can flip two adjacent
coins any number of times. You need to make
the gold-colored side of every coin facing up.
You are given the initial status of coins
in a binary string s where 1 represents the
gold side facing up and 0 represents the silver
side facing up. If it is possible to make the
gold-colored side of every coin facing up,
return Yes, otherwise return No
Input:
N = 8, s = "11001100"
Output:
Yes
Explanation:
Flipping 3rd and 4th coin together and 7th
and 8th coin together will do the task.
********* */
public class SilverAndGold{
//Silver and Gold Problem
public static String flipCoins(int N,String s) {
// Code here
int count0, count1;
count0 = count1 = 0;
for(int i = 0;i < N;i++){
int result = Character.compare('0',s.charAt(i));
if(result == 0){
count0++;
}
else{
count1++;
}
}
if(count0%2 == 0){
return "Yes";
}
else{
return "No";
}
}
public static void main(String args[]){
System.out.println(flipCoins(8,"10010100"));//test case 1
System.out.println(flipCoins(8,"11001100"));//test case 2
System.out.println(flipCoins(2,"00"));//test case 2
}
}