跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2163. Genetic Engineering

    ID: 2169 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: (无) 上传者: 标签>模拟双指针编程与模拟算法思想难度待定难度共享题库Codeforces英文题面题目来源题面语言

Genetic Engineering

题目描述

A. Genetic Engineering
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You will receive 3 points for solving this problem.

Manao is designing the genetic code for a new type of algae to efficiently produce fuel. Specifically, Manao is focusing on a stretch of DNA that encodes one protein. The stretch of DNA is represented by a string containing only the characters 'A', 'T', 'G' and 'C'.

Manao has determined that if the stretch of DNA contains a maximal sequence of consecutive identical nucleotides that is of even length, then the protein will be nonfunctional. For example, consider a protein described by DNA string "GTTAAAG". It contains four maximal sequences of consecutive identical nucleotides: "G", "TT", "AAA", and "G". The protein is nonfunctional because sequence "TT" has even length.

Manao is trying to obtain a functional protein from the protein he currently has. Manao can insert additional nucleotides into the DNA stretch. Each additional nucleotide is a character from the set {'A', 'T', 'G', 'C'}. Manao wants to determine the minimum number of insertions necessary to make the DNA encode a functional protein.

Input

The input consists of a single line, containing a string s of length n (1≤n≤100). Each character of s will be from the set {'A', 'T', 'G', 'C'}.

This problem doesn't have subproblems. You will get 3 points for the correct submission.

Output

The program should print on one line a single integer representing the minimum number of 'A', 'T', 'G', 'C' characters that are required to be inserted into the input string in order to make all runs of identical characters have odd length.

Examples
Input
GTTAAAG
Output
1
Input
AACCAACCAAAAC
Output
5
Note

In the first example, it is sufficient to insert a single nucleotide of any type between the two 'T's in the sequence to restore the functionality of the protein.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1767 题。保留原作者与原赛事署名。