


A subsequence of a string is a portion of a string where characters can be taken from any position (zero or more elements) of the string without changing the order of the characters and Form a new string. In this problem, we are given a string of length N where every character of the string is either an 'A', 'B' or 'C' character. Our task is to find that the string can only be split into subsequences "ABC" or "Not". Returns "yes" if the string is only split into the subsequence "ABC", otherwise returns "no".
Input 1: str = “AABCBC” Output 1: yes
Instructions - The method of splitting is to split the string into 2 subsequences of "ABC", as follows -
One possible method is to form the subsequence "ABC" by taking the characters with indexes 0, 2, and 3, and then form the subsequence "ABC" by taking the characters with indexes 1, 4, and 5 .
Another possible way is to form the subsequence "ABC" by getting the characters at indexes 0, 4, 5 and 1, 2, 3.
Therefore, the string can be split into 2 subsequences of "ABC".
Input 2: str = “AABBBACCC” Output 2: no
Explanation - For 'A' occurring at index number 5, there is no 'B' after it. Therefore, the entire string cannot be split into unique subsequences "ABC". Therefore, the answer is "no".
Method 1: Use Hashmap
We have two observations as follows -
The size of the string should be divisible by 3 because we need to split the string into "ABC" and the number of characters 'A', 'B' and 'C' should be equal. Otherwise, we cannot meet the conditions.
When we count the frequency of characters "A", "B" and "C", the count of "A" must be greater than or equal to the count of "B" and the count of "B" must be greater than or equal to 'C ' count. Because A's count >= B's count >= C's cout
Based on the above observations, we have three conditions to check.
Expected string size % 3 == 0.
should be the count of A >= the count of B >= the count of C.
The last condition should be freq[ ‘A’ ] == freq[ ‘B’ ] == freq[ ‘C’ ] .
We can use a hash map to solve this problem since we need to store the frequency of each character in the given string "str".
Let us discuss the following method step by step -
First we will create a function called "checkSubsequences" which will take the given string "str" as parameter and return the desired string "yes" if possible , otherwise "no" is returned as the return value.
In the function, all the steps are given below-
Create variable "len" to store the length of the string.
Check the first condition and return 'no' if the length is not divisible by 3.
Create a hash map to store the frequencies of characters 'A', 'B' and 'C'. Therefore, the space complexity is constant.
-
Use a for loop to traverse the string from 0 to less than len.
Increase the current character count of the string
-
Check the second condition and return "No" if "A"'s count is less than "B"'s count or "B"'s count is less than "C"'s count.
li>
After the for loop, we have to check the last third condition and return "No" if A's count is not equal to B's count or B's count is not equal to C's count.
Finally, when all conditions are met, return "yes".
Example
#include <bits/stdc++.h> using namespace std; // function to check subsequences of "ABC" string checkSubsequences( string str ){ int len = str.size(); //getting length of the string str // check first condition if( len%3 != 0 ) { return "no"; } map< char, int >freq; //store the count of character 'A', 'B' and 'C' for( int i=0; i<len; i++){ freq[ str[i] ]++; // increase the count of the character //chech second condition if(freq[ 'A' ] < freq[ 'B' ] || freq[ 'B' ] < freq[ 'C' ]){ return "no"; } } //check third condition if(freq[ 'A' ] != freq[ 'B' ] || freq[ 'B' ] != freq[ 'C' ]){ return "no"; } // it is possible to split string only into subsequences of "ABC" return "yes"; } // main function int main(){ string str = "ABAAABCBC";// given string // calling the function 'checkSubsequences' to check is it possible to split // string into subsequences of "ABC" string result = checkSubsequences( str ); if( result == "yes" ){ cout<< result << ", the string is splited only into the subsequences of ABC"; } else { cout<< result << ", the string is not splited only into the subsequences of ABC."; } return 0; }
Output
no, the string is not splited only into the subsequences of ABC.
Time and space complexity
The time complexity of the above code is O(N) because we traverse the string. where N is the size of the string.
The space complexity of the above code is O(1) because we are storing the frequency of numbers, whose size is constant 3.
in conclusion
In this tutorial, we implemented a program to check if a given string can only be split into subsequences ABC. We implemented a hashing method because we had to store the frequencies. In this method, we mainly check three conditions, if all conditions are met, it means that we can only split the string into subsequences of "ABC".
The above is the detailed content of Checks whether the given string can only be split into subsequences of ABC. For more information, please follow other related articles on the PHP Chinese website!

正在执行的程序称为进程。进程可以是当前操作系统上运行的应用程序,也可以是与操作系统相关的应用程序。如果一个应用程序与操作系统相关,它首先会创建一个进程来执行自己。其他应用程序依赖操作系统服务来执行。大多数应用程序是操作系统服务以及维护操作系统、软件和硬件的后台应用程序。在python中,我们有不同的方法来检查应用程序是否打开。让我们一一详细了解它们。使用psutil.process_iter()函数psutil是python中的一个模块,它为用户提供一个接口来检索正在运行的进程和系统利用率的信息

可迭代对象是可以使用循环或可迭代函数迭代其所有元素的对象。列表、字符串、字典、元组等都称为可迭代对象。在Python语言中,有多种方法可以检查对象是否可迭代。让我们一一看看。使用循环在Python中,我们有两种循环技术,一种是使用“for”循环,另一种是使用“while”循环。使用这两个循环中的任何一个,我们可以检查给定的对象是否可迭代。示例在这个例子中,我们将尝试使用“for”循环迭代一个对象并检查它是否被迭代。以下是代码。l=["apple",22,"orang

您可以利用List接口的contains()方法来检查列表中是否存在对象。contains()方法booleancontains(Objecto)如果此列表包含指定的元素,则返回true。更正式地说,如果且仅当此列表包含至少一个元素e,使得(o==null?e==null:o.equals(e)),则返回true。参数c-要测试其在此列表中是否存在的元素。返回值如果此列表包含指定的元素,则返回true。抛出ClassCastException-如果指定元素的类型与此列表不兼容(可选)。NullP

微软6月24号正式公布了win11系统,可以看到用户界面、开始菜单等和Windows10X中发现的非常相似。有的朋友在使用预览版的时候发现用的不习惯,想要改win10系统开使用,那么我们要如何操作呢,下面我们就来看看win11改win10系统教程,一起来学习一下吧。1、第一步是从Windows11打开新设置。在这里,您需要转到图像中显示的系统设置。2、在系统设置下,选择“恢复”选项。在这里,您将能够看到“以前版本的窗口”选项。您还可以在它旁边看到一个“返回”按钮,单击此按钮。3、您可以指定要返回

请考虑下表了解不同公司的资格标准-CGPA的中文翻译为:绩点平均成绩符合条件的公司大于或等于8谷歌、微软、亚马逊、戴尔、英特尔、Wipro大于或等于7教程点、accenture、Infosys、Emicon、Rellins大于或等于6rtCamp、Cybertech、Skybags、Killer、Raymond大于或等于5Patronics、鞋子、NoBrokers让我们进入java程序来检查tpp学生参加面试的资格。方法1:使用ifelseif条件通常,当我们必须检查多个条件时,我们会使用

在开发过程中,良好的代码风格是提高代码质量和可读性的重要因素。而PHP作为当今市场上应用最广泛的编程语言之一,其代码风格检查也显得尤为重要。在这里,我们将介绍一种PHP代码风格检查工具——PHP-CS-Fixer,并详细讲解如何在其上进行代码风格检查。首先,我们需要了解PHP-CS-Fixer是什么。PHP-CS-Fixer是一个由Symfony框架创建的P

使用strings.Split函数将字符串按照指定分隔符拆分成多个子串在Go语言中,我们可以使用strings包中的Split函数来将字符串按照指定的分隔符拆分成多个子串。这在处理字符串时非常有用,特别是当我们需要对字符串进行分割、解析或者提取特定的内容时。Split函数的原型如下:funcSplit(s,sepstring)[]string其中,s

将字符串分割成较小的部分是许多文本处理和数据分析场景中的常见任务。在本博客文章中,我们将探讨如何编写一个Python程序,将给定的字符串分割成大小为k的重叠字符串。当处理需要分析、特征提取或模式识别的数据序列时,这个程序可以非常有用。理解问题在深入讨论实现细节之前,让我们定义一下我们程序的要求。我们需要开发一个Python解决方案,它接受一个字符串作为输入,并将其分割成大小为k的重叠字符串。例如,如果给定的字符串是"Hello,world!",而k是3,那么程序应该生成以下重


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!
