图论 弦_混乱的弦

图论 弦

Problem statement:

问题陈述:

You are provided an input string S and the string "includehelp". You need to figure out all possible subsequences "includehelp" in the string S? Find out the number of ways in which the subsequence "includehelp" can be formed from the string S.

将为您提供输入字符串S和字符串“ includehelp”。 您需要找出字符串S中所有可能的子序列“ includehelp”。 找出从字符串S形成子序列“ includehelp”的方式的数量。

Input:

输入:

Input is the string s

输入是字符串s

Output:

输出:

Corresponding to each test case, print in a new line, a number denoting the number of ways in which we can form the subsequence "includehelp". Since output can be very large find the answer modulo 1000000007.

对应于每个测试用例,在新行中打印,该数字表示我们形成子序列“ includehelp”的方式的数量。 由于输出可能非常大,因此请找到模1000000007的答案。

Constraints:

限制条件:

Input String contains only lowercase English Letters and string length is 5000 at maximum.

输入字符串仅包含小写英文字母,并且字符串长度最大为5000。

Example:

例:

Input:
includehelp
Output:
1
Explanation:
There is only one instances of "includehelp" 
in the above input string.
Input:
iincludehelp
Output:
2
Explanation:
There is two instances of "includehelp" 
in the above input string.

jumbled strings

Solution Approach:

解决方法:

Let the input string be, s and t="includehelp"
This problem can be solved by recursion.
So we have,
string s: the input string
string t: the second string ("includehelp")
starts  : start point of string s
srartt  : start point of string t, ("includehelp")
m: length of input string
11: length of string t,"includehelp"
MOD: 1000000009

Now, how can we generate a recursive relation?

现在,我们如何生成递归关系?

Say starts=i where 0<=i<m & startt=j where 0<=j<11

starts = i ,其中0 <= i <m&startt = j ,其中0 <= j <11

Say,

说,

  1. s[starts]=t[startt] that means both have same character,

    s [starts] = t [startt]表示两个字符相同,

    Now we have two options,

    现在我们有两个选择,

    1. starts+1, starts + 1startt+1 which means we are looking for the same occurrence, we want to check for other characters as well.startt + 1 ,这意味着我们正在寻找相同的事件,我们也想检查其他字符。
    2. starts+1, starts + 1startt which means we are looking for another different occurrence.startt ,这意味着我们正在寻找另一个不同的事件。
  2. s[starts]!=t[startt]

    s [starts]!= t [startt]

    Now we have only one option which is check for

    现在我们只有一个选项可以检查

    starts+1, startt as we need to look for different occurrence only.

    starts + 1startt,因为我们只需要查找不同的事件。

Function:
jumbleString(string s,string t,int starts,int startt,int m)
// enter substring is matched
if startt==11
return 1;
// enter string has been searched with out match 
if starts==m
return 0;
if(s[starts]!=t[startt])
//only one option as we discussed
return jumbleString(s,t,starts+1,startt,m)%MOD;
else
// both the options as we discussed
return (jumbleString(s,t,starts+1,startt+1,m)%MOD +
jumbleString(s,t,starts+1,startt,m)%MOD)%MOD

The above recursion will generate many overlapping subproblems and hence we need to use dynamic programming.

上面的递归将产生许多重叠的子问题,因此我们需要使用动态编程。

Let's convert the recursion to DP.

让我们将递归转换为DP。

  • Step 1: initialize DP table,

    步骤1:初始化DP表,

    int dp[m+1][12];
    
    
  • Step 2: convert step1 of recursive function,

    步骤2:转换递归函数的step1,

    for i=0 to 11
    dp[0][i]=0;
    
    
  • Step 3: convert step 2 of recursive function,

    步骤3:转换递归函数的步骤2,

    for i=0 to m
    dp[i][0]=1;
    
    
  • Step 4: Fill the DP table which is similar to step3 of the recursion function,

    步骤4:填写DP表,该表类似于递归函数的步骤3,

    for i=1 to m
    for j=1 to 11
    if s[i-1]==t[j-1]
    dp[i][j]=(dp[i-1][j]+dp[i-1][j-1])%MOD
    else
    dp[i][j]=dp[i-1][j]
    end for
    end for
    
    
  • Step5: return dp[m][11] which is the result.

    步骤5:返回结果dp [m] [11]

The above DP technique is known as the tabulation process. We can introduce memorization as well, known as the top-down approach. Where we store every computed subproblem and while computing first we look up our DP table whether sub-problem is already solved or not. Check the below top-down implementation for the above problem.

上述DP技术称为制表过程。 我们也可以引入记忆,称为自顶向下方法。 我们存储每个计算出的子问题的位置,并且在进行第一次计算时,无论子问题是否已解决,我们都会查看DP表。 检查以下自上而下的实现是否存在上述问题。

C++ Implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
int dp[1001][12];
int jumbled(string s1, string s2, int i, int j, int n, int m)
{
if (j == m) {
return 1;
}
if (i == n && j != m)
return 0;
// if subproblem already solved
if (dp[i][j] != -1) 
return dp[i][j];
if (s1[i] == s2[j]) {
dp[i][j] = jumbled(s1, s2, i + 1, j + 1, n, m) + jumbled(s1, s2, i + 1, j, n, m);
}
else {
dp[i][j] = jumbled(s1, s2, i + 1, j, n, m);
}
return dp[i][j];
}
int main()
{
int n;
string s2 = "includehelp";
string s1;
cout << "Input string: ";
cin >> s1;
n = s1.length();
for (int i = 0; i < n; i++) {
for (int j = 0; j < 11; j++)
dp[i][j] = -1;
}
cout << "We can jumble " << jumbled(s1, s2, 0, 0, n, 11) << " of ways." << endl;
return 0;
}

Output:

输出:

Input string: iincludehelp
We can jumble 2 of ways.

翻译自: https://www.includehelp.com/icp/jumbled-strings.aspx

图论 弦

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540541.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转载] Python列表操作

参考链接&#xff1a; Python中的基本运算符 Python列表&#xff1a; 序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置&#xff0c;或索引&#xff0c;第一个索引是0&#xff0c;第二个索引是1&#xff0c;依此类推&#xff1b; Python有6个序列的…

「原创」从马云、马化腾、李彦宏的对话,看出三人智慧差在哪里?

在今年中国IT领袖峰会上&#xff0c;马云、马化腾、李彦宏第一次单独合影&#xff0c;同框画面可以说很难得了。BAT关心的走势一直是同行们竞相捕捉的热点&#xff0c;所以三位大Boss在这次大会上关于人工智能的见解&#xff0c;也受到广泛关注与多方解读。马云认为机器比人聪明…

python 注释含注释_Python注释

python 注释含注释Python注释 (Python comments) Comments in Python are used to improve the readability of the code. It is useful information given by the programmer in source code for a better understanding of code and logic that they have used to solve the …

C2的完整形式是什么?

C2&#xff1a;核心2 (C2: Core 2) C2 is an abbreviation of "Core 2" or "Intel Core 2". C2是“ Core 2”或“ Intel Core 2”的缩写 。 It is a family of Intels processor which was launched on the 27th of July, 2006. It comprises a series of…

scala特性_Scala | 特性应用

scala特性特性应用 (Trait App) Scala uses a trait called "App" which is used to convert objects into feasible programs. This conversion is done using the DelayedInit and the objects are inheriting the trait named App will be using this function. T…

[转载] Python3中的表达式运算符

参考链接&#xff1a; Python中的除法运算符 1&#xff1a;Python常用表达式运算符 yield 生成器函数send协议 lambda args:expression 创建匿名函数 x if y else z 三元选择表达式(当y为真时&#xff0c;x才会被计算) x or y 逻辑或(仅但x为假时y才会被计算) x and …

字符串矩阵转换成长字符串_字符串矩阵

字符串矩阵转换成长字符串Description: 描述&#xff1a; In this article, we are going to see how backtracking can be used to solve following problems? 在本文中&#xff0c;我们将看到如何使用回溯来解决以下问题&#xff1f; Problem statement: 问题陈述&#xf…

pythonchallenge_level2

level2 地址&#xff1a;http://www.pythonchallenge.com/pc/def/ocr.html。 源码&#xff1a;gitcode.aliyun.com:qianlizhixing12/PythonChallenge.git。 问题&#xff1a;找出页面源码一点提示注释中的稀有字符。 #!/usr/bin/env python3 # -*- coding:UTF-8 -*-# Level 2im…

[转载] python类运算符的重载

参考链接&#xff1a; Python中的运算符重载 alist input().split() blist input().split() n float(input()) class Vector: def __init__(self, x0, y0, z0): # 请在此编写你的代码(可删除pass语句) self.X x self.Y y self.Z z # 代码结束 def __add__(self, other):…

r语言 运算符_R语言运算符

r语言 运算符R语言中的运算符 (Operators in R Language) Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical cal…

[转载] Python基础之类型转换与算术运算符

参考链接&#xff1a; Python中的运算符函数| 1 一、注释 1.注释&#xff1a;对程序进行标注和说明&#xff0c;增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释&#xff1a;使用#的形式。但是#的形式只能注释一行&#xff0c;如果有多行&#xff0c;就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…

解决“由于应用程序的配置不正确,应用程序未能启动,重新安装应用程序可能会纠正这个问题”...

在VS2005下用C写的程序&#xff0c;在一台未安装VS2005的系统上&#xff0c; 用命令行方式运行&#xff0c;提示&#xff1a; “系统无法执行指定的程序” 直接双击运行&#xff0c;提示&#xff1a; “由于应用程序的配置不正确&#xff0c;应用程序未能启动&#xff0c;重新安…

qgis在地图上画导航线_在Laravel中的航线

qgis在地图上画导航线For further process we need to know something about it, 为了进一步处理&#xff0c;我们需要了解一些有关它的信息&#xff0c; The route is a core part in Laravel because it maps the controller for sending a request which is automatically …

Logistic回归和SVM的异同

这个问题在最近面试的时候被问了几次&#xff0c;让谈一下Logistic回归&#xff08;以下简称LR&#xff09;和SVM的异同。由于之前没有对比分析过&#xff0c;而且不知道从哪个角度去分析&#xff0c;一时语塞&#xff0c;只能不知为不知。 现在对这二者做一个对比分析&#xf…

[转载] python学习笔记2--操作符,数据类型和内置功能

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 什么是操作符&#xff1f; 简单的回答可以使用表达式4 5等于9&#xff0c;在这里4和5被称为操作数&#xff0c;被称为操符。 Python语言支持操作者有以下几种类型。 算…

scala bitset_Scala中的BitSet

scala bitsetScala BitSet (Scala BitSet) Set is a collection of unique elements. 集合是唯一元素的集合。 Bitset is a set of positive integers represented as a 64-bit word. 位集是一组表示为64位字的正整数。 Syntax: 句法&#xff1a; var bitset : Bitset Bits…

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春&#xff0c;每年的三、四月&#xff0c;都是个人创业最佳的起步阶段&#xff0c;也是企业采购最火热的时期。为了降低用户的上云成本&#xff0c;让大家能无门槛享受到优质高性能的云服务&#xff0c;比格云从3月16日起&#xff0c;将上线“充值30天内&#xff…