Making Anagrams


Problem Statement :


We consider two strings to be anagrams of each other if the first string's letters can be rearranged to form the second string. In other words, both strings must contain the same exact letters in the same exact frequency. For example, bacdc and dcbac are anagrams, but bacdc and dcbad are not.

Alice is taking a cryptography class and finding anagrams to be very useful. She decides on an encryption scheme involving two large strings where encryption is dependent on the minimum number of character deletions required to make the two strings anagrams. Can you help her find this number?

Given two strings,  s1 and s2, that may not be of the same length, determine the minimum number of character deletions required to make  s1 and s2 anagrams. Any characters can be deleted from either of the strings.


Function Description

Complete the makingAnagrams function in the editor below.

makingAnagrams has the following parameter(s):

string s1: a string
string s2: a string
Returns

int: the minimum number of deletions needed
Input Format

The first line contains a single string, s1.
The second line contains a single string, s2


Constraints

1  <=   | s1 | ,  | s2 |  <=  10^4

It is guaranteed that s1 and s2 consist of lowercase English letters, ascii[a-z]..



Solution :



title-img


                            Solution in C :

In   C++  :





#include <cmath>
#include <cstring>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    char s1[10010],s2[10010];
    cin>>s1>>s2;
    int a[26]={0};
    for(int i=0;i<strlen(s1);i++)
        a[s1[i]-'a']++;
    for(int i=0;i<strlen(s2);i++)
        a[s2[i]-'a']--;
    long long int ans = 0;
    for(int i=0;i<26;i++)
        ans += abs(a[i]);
    cout<<ans<<endl;
    return 0;
}








In   Java  :







import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

public class Solution {

    public static void main(String[] args) throws Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str1 = br.readLine();
        String str2 = br.readLine();
        int[] counts1 = new int[256];
        int[] counts2 = new int[256];        
        for(int i=0; i<str1.length();i++)
        {
            int index = (int)(str1.charAt(i) - '\0');
            counts1[index] += 1;
        }
        for(int i=0; i<str2.length();i++)
        {
            int index = (int)(str2.charAt(i) - '\0');
            counts2[index] += 1;
        }        
        int ans = 0;
        for(int i=0; i<256;i++)
        {
            ans += Math.abs(counts1[i] - counts2[i]);
        }
        br.close();
        System.out.println(ans);
    }
}








In   C :







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

int main() {

    char str1[20000];
    char str2[20000];
    
    scanf("%s", str1);
    scanf("%s", str2);
    
    int n1 = strlen(str1);
    int n2 = strlen(str2);
    
int i, j;
    char s1[26] = {0};
   
    for (i = 0; i < n1; ++i) {
        s1[str1[i] - 97] += 1;
    }
    
    for (i = 0; i < n2; ++i) {
        s1[str2[i] - 97] -= 1;
    }
    int count = 0;
    for (i = 0; i < 26; ++i) {
        count += abs(s1[i]);
    }
    printf("%d\n", count);
    return 0;
}









In   Python3 :







import sys
from functools import *

a = sys.stdin.readline()
b = sys.stdin.readline()

x = {}

def f(w, cf = 1):
    for c in w:
        if c not in 'abcdefghijklmnopqrstuvwxyz':
            continue
        if c not in x:
            x[c] = 0
        x[c] += cf

f(a)
f(b, -1)

res = reduce(lambda a, b: a + abs(x[b]), x.keys(), 0)

print(res)
                        








View More Similar Problems

Mr. X and His Shots

A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has N favorite shots. Each shot has a particular range. The range of the ith shot is from Ai to Bi. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player i can field from Ci to Di. You are given the N favorite shots of M

View Solution →

Jim and the Skyscrapers

Jim has invented a new flying object called HZ42. HZ42 is like a broom and can only fly horizontally, independent of the environment. One day, Jim started his flight from Dubai's highest skyscraper, traveled some distance and landed on another skyscraper of same height! So much fun! But unfortunately, new skyscrapers have been built recently. Let us describe the problem in one dimensional space

View Solution →

Palindromic Subsets

Consider a lowercase English alphabetic letter character denoted by c. A shift operation on some c turns it into the next letter in the alphabet. For example, and ,shift(a) = b , shift(e) = f, shift(z) = a . Given a zero-indexed string, s, of n lowercase letters, perform q queries on s where each query takes one of the following two forms: 1 i j t: All letters in the inclusive range from i t

View Solution →

Counting On a Tree

Taylor loves trees, and this new challenge has him stumped! Consider a tree, t, consisting of n nodes. Each node is numbered from 1 to n, and each node i has an integer, ci, attached to it. A query on tree t takes the form w x y z. To process a query, you must print the count of ordered pairs of integers ( i , j ) such that the following four conditions are all satisfied: the path from n

View Solution →

Polynomial Division

Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie

View Solution →

Costly Intervals

Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the

View Solution →