HDU 6155 Subsequence Count(矩阵 + DP + 线段树)题解
题意:01串,操作1:把l r区间的0变1,1变0;操作2:求出l r区间的子序列种数
思路:设DP[i][j]为到i为止以j结尾的种数,假设j为0,那么dp[i][0] = dp[i - 1][1] + dp[i -1][0] (0结尾新串) + dp[i - 1][0] (0结尾旧串) - dp[i - 1][0] (重复) + 1(0本身被重复时去除)。
那么可以得到转移时的矩阵
$$ \left( \begin{matrix} dp[i - 1][0] & dp[i - 1][1] & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{matrix} \right) * \left( \begin{matrix} 1 & 0 & 0 \\ 1 &1 & 0 \\ 1 & 0 & 1 \end{matrix} \right) = \left( \begin{matrix} dp[i][0] & dp[i][1] & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{matrix} \right) $$
那么我们只要用线段树维护连续的矩阵乘积就行了。
如果翻转,那么存在一个规律,可以打表找出,直接实现连续区间矩阵乘积的翻转。
代码:
#include<cmath>
#include<set>
#include<map>
#include<queue>
#include<cstdio>
#include<vector>
#include<cstring>
#include <iostream>
#include<algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int maxn = 1e5 + 5;
const int M = 50 + 5;
const ull seed = 131;
const int INF = 0x3f3f3f3f;
const ll MOD = 1000000007;
char str[maxn];
struct Mat{
ll s[3][3];
void init(){
memset(s, 0, sizeof(s));
}
};
Mat Mamul(Mat a, Mat b){
Mat ret;
ret.init();
for(int i = 0; i < 3; i++){
for(int j = 0; j < 3; j++){
for(int k = 0; k < 3; k++){
ret.s[i][j] = (ret.s[i][j] + a.s[i][k] * b.s[k][j]) % MOD;
}
}
}
return ret;
}
Mat mul[maxn << 2];
int lazy[maxn << 2];
void is(Mat &a, char s){
if(s == '0'){
a.s[0][0] = 1, a.s[0][1] = 0, a.s[0][2] = 0;
a.s[1][0] = 1, a.s[1][1] = 1, a.s[1][2] = 0;
a.s[2][0] = 1, a.s[2][1] = 0, a.s[2][2] = 1;
}
else{
a.s[0][0] = 1, a.s[0][1] = 1, a.s[0][2] = 0;
a.s[1][0] = 0, a.s[1][1] = 1, a.s[1][2] = 0;
a.s[2][0] = 0, a.s[2][1] = 1, a.s[2][2] = 1;
}
}
void change(Mat &a){
swap(a.s[0][0], a.s[1][1]);
swap(a.s[1][0], a.s[0][1]);
swap(a.s[2][0], a.s[2][1]);
}
void pushdown(int rt){
if(lazy[rt]){
lazy[rt << 1] ^= lazy[rt];
lazy[rt << 1 | 1] ^= lazy[rt];
change(mul[rt << 1]);
change(mul[rt << 1 | 1]);
lazy[rt] = 0;
}
}
void pushup(int rt){
mul[rt] = Mamul(mul[rt << 1], mul[rt << 1 | 1]);
}
void build(int l, int r, int rt){
lazy[rt] = 0;
if(l == r){
is(mul[rt], str[l]);
return;
}
int m = (l + r) >> 1;
build(l, m, rt << 1);
build(m + 1, r, rt << 1 | 1);
pushup(rt);
}
void update(int L, int R, int l, int r, int rt){
if(L <= l && R >= r){
lazy[rt] ^= 1;
change(mul[rt]);
return;
}
pushdown(rt);
int m = (l + r) >> 1;
if(L <= m)
update(L, R, l, m, rt << 1);
if(R > m)
update(L, R, m + 1, r, rt << 1 | 1);
pushup(rt);
}
Mat query(int L, int R, int l, int r, int rt){
if(L <= l && R >= r){
return mul[rt];
}
pushdown(rt);
int m = (l + r) >> 1;
Mat ret;
ret.init();
for(int i = 0; i < 3; i++)
ret.s[i][i] = 1;
if(L <= m)
ret = Mamul(ret, query(L, R, l, m, rt << 1));
if(R > m)
ret = Mamul(ret, query(L, R, m + 1, r, rt << 1 | 1));
pushup(rt);
return ret;
}
int main(){
// Mat a, b;
// is(a, '0'), is(b, '1');
// a = Mamul(Mamul(Mamul(a, b), b), b);
// for(int i = 0; i < 3; i++){
// for(int j = 0; j < 3; j++){
// printf("%d ", a.s[i][j]);
// }
// puts("");
// }
// printf("\n\n\n\n");
//
// is(a, '1'), is(b, '0');
// a = Mamul(Mamul(Mamul(a, b), b), b);
// for(int i = 0; i < 3; i++){
// for(int j = 0; j < 3; j++){
// printf("%d ", a.s[i][j]);
// }
// puts("");
// }
// printf("\n\n\n\n");
int T;
scanf("%d", &T);
while(T--){
int n, q;
scanf("%d%d", &n, &q);
scanf("%s", str + 1);
build(1, n, 1);
while(q--){
int op, l, r;
scanf("%d%d%d", &op, &l, &r);
if(op == 1){
update(l, r, 1, n, 1);
}
else{
Mat a;
a.init();
a.s[0][2] = 1;
a = Mamul(a, query(l, r, 1, n, 1));
ll ans = (a.s[0][0] + a.s[0][1]) % MOD;
printf("%lld\n", ans);
}
}
}
return 0;
}
HDU 6155 Subsequence Count(矩阵 + DP + 线段树)题解的更多相关文章
- 2017中国大学生程序设计竞赛 - 网络选拔赛 HDU 6155 Subsequence Count 矩阵快速幂
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6155 题意: 题解来自:http://www.cnblogs.com/iRedBean/p/73982 ...
- HDU 6155 Subsequence Count(矩阵乘法+线段树+基础DP)
题意 给定一个长度为 \(n\) 的 \(01\) 串,完成 \(m\) 种操作--操作分两种翻转 \([l,r]\) 区间中的元素.求区间 \([l,r]\) 有多少个不同的子序列. \(1 \le ...
- HDU 6155 Subsequence Count 线段树维护矩阵
Subsequence Count Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 256000/256000 K (Java/Oth ...
- HDU 6155 Subsequence Count (DP、线性代数、线段树)
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=6155 题解 DP+线代好题.(考场上过多时间刚前两题,没怎么想这题--) 首先列出一个DP式: 设\( ...
- codeforces750E New Year and Old Subsequence 矩阵dp + 线段树
题目传送门 思路: 先看一个大牛的题解 题解里面对矩阵的构造已经写的很清楚了,其实就是因为在每个字符串都有固定的很多中状态,刚好可以用矩阵来表达,所以$(i,j)$这种状态可以通过两个相邻的矩阵的$m ...
- hdu 6155 - Subsequence Count
话说这题比赛时候过的好少,连题都没读TOT 先考虑dp求01串的不同子序列的个数. dp[i][j]表示用前i个字符组成的以j为结尾的01串个数. 如果第i个字符为0,则dp[i][0] = dp[i ...
- HDU.6155.Subsequence Count(线段树 矩阵)
题目链接 首先考虑询问[1,n]怎么做 设 f[i][0/1]表示[1,i]以0/1结尾的不同子序列个数 则 \(if(A[i]) f[i][1] = f[i-1][0] + f[i-1][1] + ...
- ZOJ 3349 Special Subsequence 简单DP + 线段树
同 HDU 2836 只不过改成了求最长子串. DP+线段树单点修改+区间查最值. #include <cstdio> #include <cstring> #include ...
- hdu 3016 dp+线段树
Man Down Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total S ...
随机推荐
- Java自学笔记1206
字符串比较string1.equals(string2) 代码如下: 1 package Demo_1206; 2 3 import java.util.Scanner; 4 5 public cla ...
- 《Go 语言并发之道》读后感 - 第四章
<Go 语言并发之道>读后感-第四章 约束 约束可以减轻开发者的认知负担以便写出有更小临界区的并发代码.确保某一信息再并发过程中仅能被其中之一的进程进行访问.程序中通常存在两种可能的约束: ...
- [CPP] STL 简介
STL 即标准模板库(Standard Template Library),是 C++ 标准库的一部分,里面包含了一些模板化的通用的数据结构和算法.STL 基于模版的实现,因此能够支持自定义的数据结构 ...
- 前端知识(一)05 axios-谷粒学院
目录 一.axios的作用 二.axios实例 1.复制js资源 2.创建 axios.html 3.引入js 4.启动课程中心微服务 5.编写js 6.html渲染数据 7.跨域 8.使用生命周期函 ...
- uni-app开发经验分享十一: uniapp iOS云打包修改权限提示语
打包提交appstore如果用到了如下权限需要修改提示语,详细描述使用这个权限的原因,如不修改提示语appstore审核可能会被拒绝.Apple的原则是,如果一个app想要申请用户同意某个隐私信息访问 ...
- Soul API 网关源码解析 02
如何读开源项目:对着文档跑demo,对着demo看代码,懂一点就开始试,有问题了问社区. 今日目标: 1.运行examples下面的 http服务 2.学习文档,结合divde插件,发起http请求s ...
- 遍历仓库里的 commit log 替换author
#!/bin/sh # 遍历仓库里的 commit log, 替换author git filter-branch --env-filter ' an="$GIT_AUTHOR_NAME&q ...
- call by value reference name python既不是按值传递也不是按引用传递 python复制原理 创建新对象 与 改变原对象
按名调用 Algol 按值调用 Java https://docs.python.org/3.6/faq/programming.html#how-do-i-write-a-function-with ...
- loj10008家庭作业
题目描述 老师在开学第一天就把所有作业都布置了,每个作业如果在规定的时间内交上来的话才有学分.每个作业的截止日期和学分可能是不同的.例如如果一个作业学分为10 ,要求在6 天内交,那么要想拿到这 10 ...
- POJ1195 二维线段树
Mobile phones POJ - 1195 Suppose that the fourth generation mobile phone base stations in the Tamper ...