String Reduction


Problem Statement :


Given a string consisting of the letters a, b and c, we can perform the following operation:

Take any two adjacent distinct characters and replace them with the third character.
Find the shortest string obtainable through applying this operation repeatedly.

For example, given the string aba we can reduce it to a 1 character string by replacing ab with c and ca with b: aba -> ca -> b.

Function Description

Complete the stringReduction function in the editor below. It must return an integer that denotes the length of the shortest string obtainable.

stringReduction has the following parameter:
- s: a string

Input Format

The first line contains the number of test cases t.

Each of the next t lines contains a string s to process.

Constraints

1 <= t <= 100
1 <= |s| <= 100

Output Format

For each test case, print the length of the resultant minimal string on a new line.



Solution :



title-img


                            Solution in C :

In C++ :




#include<iostream>
#include<cmath>
#include<algorithm>
#include<vector>
#include<string>
#include<list>
#include<deque>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<utility>
using namespace std;

int main() {
	string s;
	int T=0, res=0;
	int tab[3];

	cin >> T;

	for (int t = 0; t < T; t++) {
		s.clear();
		tab[0] = 0;
		tab[1] = 0;
		tab[2] = 0;
		res = 0;

		cin >> s;
		for (unsigned int i = 0; i < s.size(); i++) {
			if (s[i] == 'a') tab[0]++;
			else if(s[i] == 'b') tab[1]++;
			else if(s[i] == 'c') tab[2]++;
			else cerr << "dupa!" << endl;
		}

		sort(tab, tab+3);

		while (tab[1] > 0) {
			tab[2]--;
			tab[1]--;
			tab[0]++;
			sort(tab, tab+3);
		}

		cout << tab[2] << endl;
	}


	return 0;
}








In Java :





/*
 * Anand Oza
 * October 29, 2011
 */

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;

public class Solution {
	public static void main(String[] args) throws IOException {
		StreamTokenizer in = new StreamTokenizer(new InputStreamReader(
                     System.in));
		in.nextToken();
		int T = (int) in.nval;

		int ans;

		for (int test = 0; test < T; test++) {
			in.nextToken();
			char[] c = in.sval.toCharArray();
			int[] n = new int[3];
			for (int i = 0; i < c.length; i++)
				n[c[i] - 'a']++;
			int x = (n[0] + n[1]) * (n[1] + n[2]) * (n[2] + n[0]);
			if (x == 0)
				ans = c.length;
			else if ((n[0]+n[1])%2==0 && (n[1]+n[2])%2==0 && (n[2]+n[0])%2==0)
				ans = 2;
			else
				ans = 1;

			System.out.println(ans);
		}
	}
}








In C :





#include <stdio.h>
#include <string.h>

int min( int a, int b ) { return a < b ? a : b; }

int T, n;
char s[ 105 ];

int a[ 105 ][ 105 ];
int b[ 105 ][ 105 ];
int c[ 105 ][ 105 ];
int f[ 105 ][ 105 ];

int len, i, l, r, m;

int main()
{
  scanf( "%d", &T );
  
  while( T-- ) {
    scanf( "%s", s );
    n = strlen( s );

    for( i = 0; i < n; ++i ) {
      if( s[i] == 'a' ) a[i][i] = 1; else a[i][i] = 0;
      if( s[i] == 'b' ) b[i][i] = 1; else b[i][i] = 0;
      if( s[i] == 'c' ) c[i][i] = 1; else c[i][i] = 0;
      f[i][i] = 1;
    }
    
    for( len = 2; len <= n; ++len ) {
      for( l = 0; l+len <= n; ++l ) {
        r = l + len - 1;
        
        f[l][r] = f[l][r-1]+1;
        a[l][r] = b[l][r] = c[l][r] = 0;
        
        for( m = l; m < r; ++m ) {
          c[l][r] |= ( a[l][m] && b[m+1][r] || b[l][m] && a[m+1][r] );
          b[l][r] |= ( a[l][m] && c[m+1][r] || c[l][m] && a[m+1][r] );
          a[l][r] |= ( c[l][m] && b[m+1][r] || b[l][m] && c[m+1][r] );
          f[l][r] |= min( f[l][r], f[l][m] + f[m+1][r] );
        }

        
        if( a[l][r] || b[l][r] || c[l][r] ) f[l][r] = 1;
      }
    }
    
    printf( "%d\n", f[0][n-1] );
  }  

  return 0;
}








In Python3 :






__author__ = 'jonghewk'


def reductions(string):
    d = [0,0,0]
    for letter in string:
        if letter == 'a':
            d[0]+=1
        elif letter == 'b':
            d[1]+=1
        else:
            d[2]+=1

    while True:
        count =0
        for i in d:
            if i == 0:
                count+=1
        if count>=2:
            break

        d.sort(reverse=True)
        d[0]+=-1
        d[1]+=-1
        d[2]+=1

    sum = 0
    for i in d:
        sum+=i
    print(sum)


T = int(input())
cases = []
for i in range(T):
    cases.append(input().strip())

for w in cases:
    reductions(w)
                        








View More Similar Problems

Minimum Average Waiting Time

Tieu owns a pizza restaurant and he manages it in his own way. While in a normal restaurant, a customer is served by following the first-come, first-served rule, Tieu simply minimizes the average waiting time of his customers. So he gets to decide who is served first, regardless of how sooner or later a person comes. Different kinds of pizzas take different amounts of time to cook. Also, once h

View Solution →

Merging Communities

People connect with each other in a social network. A connection between Person I and Person J is represented as . When two persons belonging to different communities connect, the net effect is the merger of both communities which I and J belongs to. At the beginning, there are N people representing N communities. Suppose person 1 and 2 connected and later 2 and 3 connected, then ,1 , 2 and 3 w

View Solution →

Components in a graph

There are 2 * N nodes in an undirected graph, and a number of edges connecting some nodes. In each edge, the first value will be between 1 and N, inclusive. The second node will be between N + 1 and , 2 * N inclusive. Given a list of edges, determine the size of the smallest and largest connected components that have or more nodes. A node can have any number of connections. The highest node valu

View Solution →

Kundu and Tree

Kundu is true tree lover. Tree is a connected graph having N vertices and N-1 edges. Today when he got a tree, he colored each edge with one of either red(r) or black(b) color. He is interested in knowing how many triplets(a,b,c) of vertices are there , such that, there is atleast one edge having red color on all the three paths i.e. from vertex a to b, vertex b to c and vertex c to a . Note that

View Solution →

Super Maximum Cost Queries

Victoria has a tree, T , consisting of N nodes numbered from 1 to N. Each edge from node Ui to Vi in tree T has an integer weight, Wi. Let's define the cost, C, of a path from some node X to some other node Y as the maximum weight ( W ) for any edge in the unique path from node X to Y node . Victoria wants your help processing Q queries on tree T, where each query contains 2 integers, L and

View Solution →

Contacts

We're going to make our own Contacts application! The application must perform two types of operations: 1 . add name, where name is a string denoting a contact name. This must store name as a new contact in the application. find partial, where partial is a string denoting a partial name to search the application for. It must count the number of contacts starting partial with and print the co

View Solution →