CF750E New Year and Old Subsequence
讲道理好久没有做过题了..
题目大意
给出长度为$n$的只含数字的串,有$q$个询问,每次询问一段区间,问最少删去多少个数才能变成只含2017子序列而不含2016子序列
吉爸爸好强啊..
定义$a_{i,j}$表示该区间从第$i$位匹配不了第$j$位最少要删去的数字数
这个东西用一个线段树或者st表来维护,合并是类似于矩阵乘法的..
根据吉爸爸的优化,对于一个询问区间$[l,r]$
因为一定需要一个7,所以把它分成两段,就像这样
l...最后一个7...r
那么前面一段只需要求出从第一位但是匹配不了最后一位的方案数,再加上后面那一段6的个数就是答案了..
code
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
using namespace std;
const int Maxn = 200010;
const int lg = 20;
const int inf = 0x7fffffff;
struct node {
int a[4][4];
void clear (){ memset ( a, 63, sizeof (a) ); }
}f[Maxn][lg], p;
int n, m;
char s[Maxn];
int bit[Maxn], pre[Maxn], sum[Maxn];
int _min ( int x, int y ){ return x < y ? x : y; }
void merge ( node &ret, node x, node y ){
ret.clear ();
int i, j, k;
for ( i = 0; i < 4; i ++ ) for ( j = 0; j < 4; j ++ ) for ( k = 0; k < 4; k ++ ) ret.a[i][j] = _min ( x.a[i][k]+y.a[k][j], ret.a[i][j] );
}
int getans ( int l, int r ){
int len = r-l+1;
p.clear ();
p.a[0][0] = p.a[1][1] = p.a[2][2] = p.a[3][3] = 0;
while ( len > 0 ){
merge ( p, p, f[l][bit[len]] );
l += (1<<bit[len]);
len -= (1<<bit[len]);
}
return p.a[0][3];
}
int main (){
int i, j, k;
scanf ( "%d%d", &n, &m );
scanf ( "%s", s+1 );
bit[1] = 0;
for ( i = 2; i <= n; i ++ ) bit[i] = bit[i>>1]+1;
for ( i = 1; i <= n; i ++ ){
if ( s[i] == '6' ) sum[i] = sum[i-1]+1; else sum[i] = sum[i-1];
if ( s[i] == '7' ) pre[i] = i; else pre[i] = pre[i-1];
}
for ( i = 1; i <= n; i ++ ){
f[i][0].clear ();
f[i][0].a[0][0] = f[i][0].a[1][1] = f[i][0].a[2][2] = f[i][0].a[3][3] = 0;
if ( s[i] == '2' ) f[i][0].a[0][1] = 0, f[i][0].a[0][0] = 1;
if ( s[i] == '0' ) f[i][0].a[1][2] = 0, f[i][0].a[1][1] = 1;
if ( s[i] == '1' ) f[i][0].a[2][3] = 0, f[i][0].a[2][2] = 1;
if ( s[i] == '6' ) f[i][0].a[3][3] = 1;
}
for ( i = n; i >= 1; i -- ){
for ( j = 1; j <= 18 && i+(1<<(j-1)) <= n; j ++ ){
merge ( f[i][j], f[i][j-1], f[i+(1<<(j-1))][j-1] );
}
}
for ( i = 1; i <= m; i ++ ){
int l, r;
scanf ( "%d%d", &l, &r );
k = pre[r];
int ans = getans ( l, k-1 );
if ( ans > n ) printf ( "-1\n" );
else printf ( "%d\n", ans+sum[r]-sum[k] );
}
return 0;
}
哎好久没打都有点生疏了.. 加油吧..
CF750E New Year and Old Subsequence的更多相关文章
- 2021record
2021-10-14 P2577 [ZJOI2004]午餐 2021-10-13 CF815C Karen and Supermarket(小小紫题,可笑可笑) P6748 『MdOI R3』Fall ...
- DP 优化方法大杂烩 & 做题记录 I.
标 * 的是推荐阅读的部分 / 做的题目. 1. 动态 DP(DDP)算法简介 动态动态规划. 以 P4719 为例讲一讲 ddp: 1.1. 树剖解法 如果没有修改操作,那么可以设计出 DP 方案 ...
- 【CF750E】New Year and Old Subsequence
题目大意:给定一个长度为 N 的字符串,定义一个字串是"好的",当且仅当字串中含有一个 "2017" 的子序列,且不含有 "2016" 的子 ...
- [LeetCode] Arithmetic Slices II - Subsequence 算数切片之二 - 子序列
A sequence of numbers is called arithmetic if it consists of at least three elements and if the diff ...
- [LeetCode] Is Subsequence 是子序列
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only l ...
- [LeetCode] Wiggle Subsequence 摆动子序列
A sequence of numbers is called a wiggle sequence if the differences between successive numbers stri ...
- [LeetCode] Increasing Triplet Subsequence 递增的三元子序列
Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the ar ...
- [LeetCode] Longest Increasing Subsequence 最长递增子序列
Given an unsorted array of integers, find the length of longest increasing subsequence. For example, ...
- 动态规划求最长公共子序列(Longest Common Subsequence, LCS)
1. 问题描述 子串应该比较好理解,至于什么是子序列,这里给出一个例子:有两个母串 cnblogs belong 比如序列bo, bg, lg在母串cnblogs与belong中都出现过并且出现顺序与 ...
随机推荐
- 使用Impersonation仿冒用户运行WCF 服务方法
默认情况下,当我们把wcf服务器部署在IIS上时, 我们访问wcf时使用的是IIS内建的内建角色,对于IIS8.0,它被命名为ApplicationPoolIdentity, 一般来说,系统为每个应用 ...
- UnixBench-linux下的跑分软件
UnixBench是一款开源的测试 unix 系统基本性能的工具,是比较通用的测试VPS性能的工具.UnixBench会执行一系列的测试,包括2D和3D图形系统的性能,测试的结果不仅仅是CPU,内存, ...
- Web APP 之rem的使用
移动端web app的开发,之前开发直接使用px像素做单位,这样子做对于传统的PC端开发来说,个人比较习惯,但是对于移动端在来,有说逞强.最明显是切图效果与设计师想达到的效果有些差距,比如<he ...
- 2016 Google code jam 答案
二,RoundC import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundE ...
- Python全栈开发【面向对象进阶】
Python全栈开发[面向对象进阶] 本节内容: isinstance(obj,cls)和issubclass(sub,super) 反射 __setattr__,__delattr__,__geta ...
- Python~字典
if not isinstance(x, (int, float)): raise TypeError('bad operand type') range() raw_input(‘birth’) ...
- window下安装anaconda ipython和spyder都打不开
1. 环境 win7 64位,软件是Anaconda2-4.1.1-Windows-x86_64.exe 2. 出现的问题 ipython打不开,一闪而过 spyder点击没有反应 anaconda ...
- JOptionPane用法--java
JOptionPane用法--java JOptionPane的简单应用: 1.首先引入包: import javax.swing.JOptionPane; 2.添加如下代码: Object[] op ...
- ubuntu14.04下直接修改apache2默认目录导致wordpress样式改变的解决办法
一开始看到网上有各种各样的解决方法: 第一种是直接将 sites-available目录下的000-default.conf中的下列代码: DocumentRoot /var/www/html 修改为 ...
- 升级python
一开始有这个需求,是因为用 YaH3C 替代 iNode 进行校园网认证时,一直编译错误,提示找不到 Python 的某个模块,百度了一下,此模块是在 Python2.7 以上才有的,但是系统的自带的 ...