본문 바로가기
JAVA

[백준/자바] 1439번 뒤집기

by 동백05 2022. 3. 14.

https://www.acmicpc.net/problem/1439

 

1439번: 뒤집기

다솜이는 0과 1로만 이루어진 문자열 S를 가지고 있다. 다솜이는 이 문자열 S에 있는 모든 숫자를 전부 같게 만들려고 한다. 다솜이가 할 수 있는 행동은 S에서 연속된 하나 이상의 숫자를 잡고 모

www.acmicpc.net

 

import java.util.Scanner;
public class mar14 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner s=new Scanner(System.in);
		String word=s.next();
		int length=word.length();
		int count[]=new int[2];
		count[word.charAt(0)-48]++;
		for(int i=0;i<length-1;i++) {
			if(word.charAt(i)!=word.charAt(i+1)) {
				count[word.charAt(i+1)-48]++;
			}
		}		
		System.out.print(Math.min(count[0], count[1]));
		

	}

}

댓글