Abbreviation


Problem Statement :


You can perform the following operations on the string, a:

1.Capitalize zero or more of a's lowercase letters.
2.Delete all of the remaining lowercase letters in a.
Given two strings, a and b, determine if it's possible to make a equal to b as described. If so, print YES on a new line. Otherwise, print NO.

For example, given a = AbcDE and b = ABDE, in a we can convert b and delete c to match b. If a = AbcDE and b = AFDE, matching is not possible because letters may only be capitalized or discarded, not changed.

Function Description

Complete the function abbreviation in the editor below. It must return either YES or NO.

abbreviation has the following parameter(s):

a: the string to modify
b: the string to match
Input Format

The first line contains a single integer q, the number of queries.

Each of the next q pairs of lines is as follows:
- The first line of each query contains a single string, a.
- The second line of each query contains a single string, b.

Constraints

1 <= q <= 10
1 <= |a|,|b| <= 1000
String a consists only of uppercase and lowercase English letters, ascii[A-Za-z].
String b consists only of uppercase English letters, ascii[A-Z].
Output Format

For each query, print YES on a new line if it's possible to make string a equal to string b. Otherwise, print NO.



Solution :



title-img


                            Solution in C :

In C++ :






#include <bits/stdc++.h>
using namespace std;

const int maxN = 1000 + 100; 

bool dp[maxN][maxN]; 

inline void solve() { 
	string a,b; cin >> a >> b; 
	memset( dp , 0 , sizeof dp ); 
	int n = a.size() , m = b.size(); 
	dp[0][0] = true; 
	for( int i = 1 ; i <= n ; i++ ) 
		for( int j = 0 ; j <= m ; j++ ) { 
			if( j && dp[i-1][j-1] && toupper(a[i-1]) == b[j-1] ) 
			   dp[i][j] = true; 
			if( dp[i-1][j] && islower(a[i-1]) ) 
				dp[i][j] = true; 
		}
	if( dp[n][m] ) 
		cout << "YES" << endl;
	else
		cout << "NO" << endl;
}

int main() { 
	int t; cin >> t; 
	while( t-- ) 
		solve(); 
}








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) {
        Scanner sc = new Scanner(System.in);
        int q = sc.nextInt();
        sc.nextLine();
        for (int z = 0; z < q; z++) {
            char[] a = sc.nextLine().toCharArray();
            char[] b = sc.nextLine().toCharArray();
            boolean[][] dp = new boolean[a.length+1][b.length+1];
            for (int i = 0; i <= a.length; i++)
            dp[i][0] = true;
            for (int i = 1; i <= a.length; i++) {
                if (a[i-1]>='A'&&a[i-1]<='Z') {
                    for (int j = 1; j <= b.length; j++) {
                        if (b[j-1]==a[i-1])
                            dp[i][j] = dp[i-1][j-1];
                    }
                } else {
                    char c = (char)(a[i-1]-32);
                    for (int j = 1; j <= b.length; j++) {
                        if (b[j-1]==c)
                            dp[i][j] = dp[i-1][j-1];
                        dp[i][j] |= dp[i-1][j];
                    }
                }
            }
            System.out.println(dp[a.length][b.length]?"YES":"NO");
        }
    }
}








In C :






#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int change(char *A,int n, char *B,int m){
    if( A[n]=='\0' && B[m]=='\0' )
        return 1;
    if(A[n]=='\0')
        return 0;
    if( B[m]=='\0' ){
        while( A[n]!= '\0' ){
            if(A[n]<='Z' && A[n]>='A')
                return 0;
            n++;
        }
        return 1;
    }
    if( (A[n]<='Z' && A[n]>='A') && (A[n] != B[m]) )
        return 0;
    if( (A[n]==B[m]) ) 
        return change(A,n+1,B,m+1);
    if ( (A[n]-'a' +'A')==B[m] ){
        if(change(A,n+1,B,m+1) )
            return 1;
        else
            return change(A,n+1,B,m);
    }
    return change(A,n+1,B,m);
}
int main() {
    
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    char A[1010],B[1010];
    int q,n;
    scanf("%d",&q);
    while(q--){
        scanf("%s",A);
        scanf("%s",B);
        if( change(A,0,B,0) ){
            printf("YES\n");
            
        }else{
            printf("NO\n");
        }
    }
    return 0;
}








In Python3 :






def recurse(a,b):
    if len(a) < len(b):
        return False
    if len(b) == 0:
        return a.islower()
    if a.upper() == b:
        return True
    if a[0].isupper():
        if a[0] == b[0]:
            return recurse(a[1:],b[1:])
        else:
            return False
    else:
        if a[0].upper() != b[0]:
            return recurse(a[1:],b)
        else:
            return (recurse(a[1:],b[1:]) or recurse(a[1:],b))

def solveProblem():
    a = input()
    b = input()
    x = recurse(a,b)
    if x:
        print('YES')
    else:
        print('NO')

T = int(input())
for t in range(T):
    solveProblem()
                        








View More Similar Problems

Delete a Node

Delete the node at a given position in a linked list and return a reference to the head node. The head is at position 0. The list may be empty after you delete the node. In that case, return a null value. Example: list=0->1->2->3 position=2 After removing the node at position 2, list'= 0->1->-3. Function Description: Complete the deleteNode function in the editor below. deleteNo

View Solution →

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →

Get Node Value

This challenge is part of a tutorial track by MyCodeSchool Given a pointer to the head of a linked list and a specific position, determine the data value at that position. Count backwards from the tail node. The tail is at postion 0, its parent is at 1 and so on. Example head refers to 3 -> 2 -> 1 -> 0 -> NULL positionFromTail = 2 Each of the data values matches its distance from the t

View Solution →