NOIP2015提高组复赛B 子串
题目链接:https://ac.nowcoder.com/acm/contest/263/B
题目大意:
略
分析:
设preA(i)为字符串A中第1个字符到第i个字符构成的字符串。
设preB(i)为字符串B中第1个字符到第i个字符构成的字符串。
设所要解决的问题为problem(A, B, k)。
设dp[i][j][h]为problem(preA(i), preB(j), h)的答案。
于是problem(A, B, k)的答案就是dp[n][m][k]。
以下几种情况是容易得知的:
当 j == 0 && h == 0时,dp[i][0][0] = 1,这是因为在preA(i)中选0个子串只有一种选法,连起来是空串,preB(0)也是空串。
当 i < h 时,即preA(i)选不出h个子串时,dp[i][j][h] = 0。
当 i < j 时,即preA(i)长度小于preB(j)时,dp[i][j][h] = 0。
当 h > j 时,即所需要选的子串数目大于于preB(j)时,dp[i][j][h] = 0,因为每个字串至少贡献一个长度。
当 j != 0 && h == 0时,由于preB(j)不是空串,所以dp[i][j][h] = 0。
现在开始推dp[i + 1][j][h]的递推关系(由于上面所述的情况,i = 0时候的所有情况都是已知的,所以很自然地想要用i去推i + 1):
作为A[i + 1]这个新加进来的字符,有2种情况:
1:A[i + 1] != B[j],这种情况下A[i + 1]并不会对答案有所贡献,有和没有一样,所以dp[i + 1][j][h] = dp[i][j][h]。
2:A[i + 1] == B[j],这种情况下dp[i + 1][j][h]的构成分为3种:
(1):不选A[i + 1],这和A[i + 1] != B[j]一样,dp[i + 1][j][h] = dp[i][j][h]。
(2):单独选A[i + 1],这时dp[i + 1][j][h] = dp[i][j - 1][h - 1]。
(3):A[i + 1]是和A[i]一起被选上的,这种情况下和单选选A[i + 1]差不多,不过h不用减,又因为dp[i][j - 1][h]里面还包含A[i + 1]和A[i]不一起的情况,即没选A[i]的情况,要减去这种情况,所以答案为dp[i + 1][j][h] = dp[i][j - 1][h] - dp[i - 1][j - 1][h]。
注意点:数组直接开3维会爆内存,应该用滚动数组。
70分代码如下(超内存):
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std; #define INIT() std::ios::sync_with_stdio(false);std::cin.tie(0);
#define Rep(i,n) for (int i = 0; i < (n); ++i)
#define For(i,s,t) for (int i = (s); i <= (t); ++i)
#define rFor(i,t,s) for (int i = (t); i >= (s); --i)
#define ForLL(i, s, t) for (LL i = LL(s); i <= LL(t); ++i)
#define rForLL(i, t, s) for (LL i = LL(t); i >= LL(s); --i)
#define foreach(i,c) for (__typeof(c.begin()) i = c.begin(); i != c.end(); ++i)
#define rforeach(i,c) for (__typeof(c.rbegin()) i = c.rbegin(); i != c.rend(); ++i) #define pr(x) cout << #x << " = " << x << " "
#define prln(x) cout << #x << " = " << x << endl #define LOWBIT(x) ((x)&(-x)) #define ALL(x) x.begin(),x.end()
#define INS(x) inserter(x,x.begin()) #define ms0(a) memset(a,0,sizeof(a))
#define msI(a) memset(a,inf,sizeof(a))
#define msM(a) memset(a,-1,sizeof(a)) #define MP make_pair
#define PB push_back
#define ft first
#define sd second template<typename T1, typename T2>
istream &operator>>(istream &in, pair<T1, T2> &p) {
in >> p.first >> p.second;
return in;
} template<typename T>
istream &operator>>(istream &in, vector<T> &v) {
for (auto &x: v)
in >> x;
return in;
} template<typename T1, typename T2>
ostream &operator<<(ostream &out, const std::pair<T1, T2> &p) {
out << "[" << p.first << ", " << p.second << "]" << "\n";
return out;
} typedef long long LL;
typedef unsigned long long uLL;
typedef pair< double, double > PDD;
typedef set< int > SI;
typedef vector< int > VI;
const double EPS = 1e-;
const int inf = 1e9 + ;
const LL mod = 1e9 + ;
const int maxN = 1e5 + ;
const LL ONE = ; int n, m, k;
string A, B;
LL dp[][][]; void solve() {
For(i, , n) {
For(j, , m) {
For(h, , k) {
if(j == && h == ) dp[i][j][h] = ;
else if(i < h || i < j || h > j || h == ) dp[i][j][h] = ;
else if(A[i] == B[j]) {
dp[i][j][h] += dp[i - ][j][h]; // 不选A[i]
dp[i][j][h] %= mod;
dp[i][j][h] += dp[i - ][j - ][h - ]; // 单独选A[i]
dp[i][j][h] %= mod;
if(i >= ) {
// A[i]和A[i - 1]连着的情况
dp[i][j][h] += dp[i - ][j - ][h]; // 先加一下所有不单独选A[i]的情况
dp[i][j][h] %= mod;
dp[i][j][h] -= dp[i - ][j - ][h]; // 再减去不连着的情况
dp[i][j][h] += mod;
dp[i][j][h] %= mod;
}
dp[i][j][h] %= mod;
}
else if(A[i] != B[j]) dp[i][j][h] = dp[i - ][j][h];
}
}
} } int main(){
INIT();
cin >> n >> m >> k >> A >> B;
A.insert(, "#"); //< 让下标从1开始
B.insert(, "#"); solve(); cout << dp[n][m][k] << endl;
return ;
}
100分代码如下:
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std; #define INIT() std::ios::sync_with_stdio(false);std::cin.tie(0);
#define Rep(i,n) for (int i = 0; i < (n); ++i)
#define For(i,s,t) for (int i = (s); i <= (t); ++i)
#define rFor(i,t,s) for (int i = (t); i >= (s); --i)
#define ForLL(i, s, t) for (LL i = LL(s); i <= LL(t); ++i)
#define rForLL(i, t, s) for (LL i = LL(t); i >= LL(s); --i)
#define foreach(i,c) for (__typeof(c.begin()) i = c.begin(); i != c.end(); ++i)
#define rforeach(i,c) for (__typeof(c.rbegin()) i = c.rbegin(); i != c.rend(); ++i) #define pr(x) cout << #x << " = " << x << " "
#define prln(x) cout << #x << " = " << x << endl #define LOWBIT(x) ((x)&(-x)) #define ALL(x) x.begin(),x.end()
#define INS(x) inserter(x,x.begin()) #define ms0(a) memset(a,0,sizeof(a))
#define msI(a) memset(a,inf,sizeof(a))
#define msM(a) memset(a,-1,sizeof(a)) #define MP make_pair
#define PB push_back
#define ft first
#define sd second template<typename T1, typename T2>
istream &operator>>(istream &in, pair<T1, T2> &p) {
in >> p.first >> p.second;
return in;
} template<typename T>
istream &operator>>(istream &in, vector<T> &v) {
for (auto &x: v)
in >> x;
return in;
} template<typename T1, typename T2>
ostream &operator<<(ostream &out, const std::pair<T1, T2> &p) {
out << "[" << p.first << ", " << p.second << "]" << "\n";
return out;
} typedef long long LL;
typedef unsigned long long uLL;
typedef pair< double, double > PDD;
typedef set< int > SI;
typedef vector< int > VI;
const double EPS = 1e-;
const int inf = 1e9 + ;
const LL mod = 1e9 + ;
const int maxN = 1e5 + ;
const LL ONE = ; int n, m, k;
string A, B;
LL dp[][][]; void solve() {
For(i, , n) {
For(j, , m) {
For(h, , k) {
dp[i % ][j][h] = ; // 归零
if(j == && h == ) dp[i % ][j][h] = ;
else if(i < h || i < j || h > j || h == ) dp[i % ][j][h] = ;
else if(A[i] == B[j]) {
dp[i % ][j][h] += dp[(i - ) % ][j][h]; // 不选A[i]
dp[i % ][j][h] += dp[(i - ) % ][j - ][h - ]; // 单独选A[i]
if(i >= ) {
// A[i]和A[i - 1]连着的情况
dp[i % ][j][h] += dp[(i - ) % ][j - ][h]; // 先加一下所有不单独选A[i]的情况
dp[i % ][j][h] -= dp[(i - ) % ][j - ][h]; // 再减去不连着的情况
dp[i % ][j][h] += mod;
}
}
else if(A[i] != B[j]) dp[i % ][j][h] = dp[(i - ) % ][j][h];
dp[i % ][j][h] %= mod;
}
}
}
} int main(){
INIT();
cin >> n >> m >> k >> A >> B;
A.insert(, "#"); //< 让下标从1开始
B.insert(, "#"); solve(); cout << dp[n % ][m][k] << endl;
return ;
}
NOIP2015提高组复赛B 子串的更多相关文章
- 【题解】NOIP2015提高组 复赛
[题解]NOIP2015提高组 复赛 传送门: 神奇的幻方 \([P2615]\) 信息传递 \([P2661]\) 斗地主 \([P2668]\) 跳石头 \([P2678]\) 子串 \([P26 ...
- 洛谷-神奇的幻方-NOIP2015提高组复赛
题目描述 幻方是一种很神奇的N*N矩阵:它由数字1,2,3,--,N*N构成,且每行.每列及两条对角线上的数字之和都相同. 当N为奇数时,我们可以通过以下方法构建一个幻方: 首先将1写在第一行的中间. ...
- 冲刺NOIP2015提高组复赛模拟试题(五)2.道路修建
2.道路修建 描述 Description liouzhou_101最悲痛的回忆就是NOI2011的道路修建,当时开了系统堆栈,结果无限RE… 出于某种报复心理,就把那题神奇了一下: 在 Z星球上有N ...
- 冲刺NOIP2015提高组复赛模拟试题(五) 3.破坏基地
3.破坏基地 描述 Description 在Z国和W国之间一直战火不断. 好不容易,W国的间谍把完整的Z国的军事基地的地图到手了. 于是W国决定再次出击,一举击破Z国的防线. W国认真研究了Z国的地 ...
- 冲刺NOIP2015提高组复赛模拟试题(五)1.数学作业
1. 数学作业 [问题描述] 路人丙的数学老师非常乏力,他喜欢出一些非常乏力的数学题来为难乏力的学生们.这次数学老师布置了一堆的数学题作为作业,而且这些数学题有个共同的特点是都求C(N,M)中不同质因 ...
- 刷题总结——子串(NOIP2015提高组)
题目: 题目背景 NOIP2015 提高组 Day2 T2 题目描述 有两个仅包含小写英文字母的字符串 A 和 B .现在要从字符串 A 中取出 k 个互不重叠的非空子串,然后把这 k 个子串按照其在 ...
- [NOIP2015] 提高组 洛谷P2615 神奇的幻方
题目描述 幻方是一种很神奇的N*N矩阵:它由数字1,2,3,……,N*N构成,且每行.每列及两条对角线上的数字之和都相同. 当N为奇数时,我们可以通过以下方法构建一个幻方: 首先将1写在第一行的中间. ...
- NOIP 2015提高组复赛
神奇的幻方 题目描述 幻方是一种很神奇的N*N矩阵:它由数字1,2,3,……,N*N构成,且每行.每列及两条对角线上的数字之和都相同. 当N为奇数时,我们可以通过以下方法构建一个幻方: 首先将1写在第 ...
- 洛谷 P2678 & [NOIP2015提高组] 跳石头
题目链接 https://www.luogu.org/problemnew/show/P2678 题目背景 一年一度的“跳石头”比赛又要开始了! 题目描述 这项比赛将在一条笔直的河道中进行,河道中分布 ...
随机推荐
- Unix/Linux环境C编程新手教程(21) 各个系统HelloWorld跑起来效果怎样?
版权声明:本文为博主尹成联系QQ77025077,微信18510341407原创文章,欢迎转载侵权不究. https://blog.csdn.net/yincheng01/article/detail ...
- 原生javascript实现extend
var obj1 = {'a': 'obj2','b':'2'}; var obj2 = {name: 'obj3'}; function extend() { var length = argume ...
- Git 遇到的坑
ssh出错 gitlab服务器添加完公钥之后,ssh服务器然后报了这个错误 sign_and_send_pubkey: signing failed: agent refused operation ...
- Flask中无法在其他函数中查询Sqlachemy的解决办法
报错信息部分截取: File "D:\python 3.5\lib\site-packages\flask_sqlalchemy\__init__.py", line 912, i ...
- linux7 udev的生效
这篇文章主要介绍在Oracle Linux 7中如何使用udev来设置用户自定义的设备名.在Oracle Linux 7 中的设置方法与之前的Linux版本有较大差别. 下面的例子的对/dev/sdb ...
- Spring Security(十三):5.2 HttpSecurity
Thus far our WebSecurityConfig only contains information about how to authenticate our users. How do ...
- Spring Boot配置文件详解-ConfigurationProperties和Value优缺点-(转)好文
文章转自 http://www.cnblogs.com/itdragon/p/8686554.html Spring Boot提供了两种常用的配置文件,分别是properties文件和yml文件.他们 ...
- mysql 行转列 列转行
一.行转列 即将原本同一列下多行的不同内容作为多个字段,输出对应内容. 建表语句 DROP TABLE IF EXISTS tb_score; CREATE TABLE tb_score( id ) ...
- Shiro核心概述
0.写在前面的话 最近在考虑权限相关的东西,于是就找到了Shiro,开涛老师的Shiro教程博客(<跟我学Shiro>)写得实在很好还带所有源码,所以我也就没有自己再总结各个阶段的笔记,只 ...
- Spark性能调优
Spark性能优化指南——基础篇 https://tech.meituan.com/spark-tuning-basic.html Spark性能优化指南——高级篇 https://tech.meit ...