CodeForces 750E. New Year and Old Subsequence

A string t is called nice if a string "2017" occurs in t as a subsequence but a string "2016" doesn't occur in t as a subsequence. For example, strings "203434107" and "9220617" are nice, while strings "20016", "1234" and "20167" aren't nice.

The ugliness of a string is the minimum possible number of characters to remove, in order to obtain a nice string. If it's impossible to make a string nice by removing characters, its ugliness is  - 1.

Limak has a string s of length n, with characters indexed 1 through n. He asks you q queries. In the i-th query you should compute and print the ugliness of a substring (continuous subsequence) of s starting at the index ai and ending at the index bi (inclusive).

Input

The first line of the input contains two integers n and q (4 ≤ n ≤ 200 0001 ≤ q ≤ 200 000) — the length of the string s and the number of queries respectively.

The second line contains a string s of length n. Every character is one of digits '0'–'9'.

The i-th of next q lines contains two integers ai and bi (1 ≤ ai ≤ bi ≤ n), describing a substring in the i-th query.

Output

For each query print the ugliness of the given substring.

Examples
input
8 3
20166766
1 8
1 7
2 8
output
4
3
-1
input
15 5
012016662091670
3 4
1 14
4 15
1 13
10 15
output
-1
2
1
-1
-1
input
4 2
1234
2 4
1 2
output
-1
-1
Note

In the first sample:

  • In the first query, ugliness("20166766") = 4 because all four sixes must be removed.
  • In the second query, ugliness("2016676") = 3 because all three sixes must be removed.
  • In the third query, ugliness("0166766") =  - 1 because it's impossible to remove some digits to get a nice string.

In the second sample:

  • In the second query, ugliness("01201666209167") = 2. It's optimal to remove the first digit '2' and the last digit '6', what gives a string "010166620917", which is nice.
  • In the third query, ugliness("016662091670") = 1. It's optimal to remove the last digit '6', what gives a nice string "01666209170".

题意: 给一个数字串 每次询问对于子串[l,r]至少删除多少个数字才能保证该子串无子序列'2016'但有子序列'2017'

题解: yjq说是(离线?)分治+dp(orz)

其实线段树就够了

对于每个线段树上的节点,记录dp[i][j]表示状态i转移到状态j的最小代价

状态:0-什么都没有

  1-出现2

          2-出现20

          3-出现201

  4-出现2017

写一个merge就好了,注意'6'的处理:3-3 4-4都是需要1的代价

#include <bits/stdc++.h>

using namespace std;

const int maxn = 200020;
const int inf = 1e9;

struct node
{
	int a[5][5];
	node operator + ( const node b ) const
	{
		node c;
		for( int i = 0 ; i < 5 ; i++ )
			for( int j = 0 ; j < 5 ; j++ )
			{
				c.a[ i ][ j ] = inf;
				for( int k = 0 ; k < 5 ; k++ )
					c.a[ i ][ j ] = min( c.a[ i ][ j ], a[ i ][ k ] + b.a[ k ][ j ] );
			}
		return c;
	}
}e[maxn << 2];

char s[maxn];

int n, Q;

void build(int x, int l, int r)
{
	if( l == r )
	{
		for( int i = 0 ; i < 5 ; i++ )
			for( int j = 0 ; j < 5 ; j++ )
				e[ x ].a[ i ][ j ] = ( i == j ) ? 0 : 1e9;
		if( s[ l ] == '2' )
		{
			e[ x ].a[ 0 ][ 0 ] = 1;
			e[ x ].a[ 0 ][ 1 ] = 0;
		}
		else if( s[ l ] == '0' )
		{
			e[ x ].a[ 1 ][ 1 ] = 1;
			e[ x ].a[ 1 ][ 2 ] = 0;
		}
		else if( s[ l ] == '1' )
		{
			e[ x ].a[ 2 ][ 2 ] = 1;
			e[ x ].a[ 2 ][ 3 ] = 0;
		}
		else if( s[ l ] == '7' )
		{
			e[ x ].a[ 3 ][ 3 ] = 1;
			e[ x ].a[ 3 ][ 4 ] = 0;
		}
		else if( s[ l ] == '6' )
		{
			e[ x ].a[ 3 ][ 3 ] = 1;
			e[ x ].a[ 4 ][ 4 ] = 1;
		}
		return ;
	}
	int mid = l + r >> 1;
	build( x << 1, l, mid );
	build( x << 1 | 1, mid + 1, r );
	e[ x ] = e[ x << 1 ] + e[ x << 1 | 1 ];
}

node query(int x, int l, int r, int ql, int qr)
{
	if( l == ql && r == qr )
		return e[ x ];
	int mid = l + r >> 1;
	if( qr <= mid ) return query( x << 1, l, mid, ql, qr );
	if( ql > mid ) return query( x << 1 | 1, mid + 1, r, ql, qr );
	return query( x << 1, l, mid, ql, mid ) + query( x << 1 | 1, mid + 1, r, mid + 1, qr );
}

int main()
{
	scanf( "%d%d%s", &n, &Q, s + 1 );
	build( 1, 1, n );
	while( Q-- )
	{
		int l, r;
		scanf( "%d%d", &l, &r );
		int ans = query( 1, 1, n, l, r ).a[ 0 ][ 4 ];
		if( ans == inf )
			printf( "-1\n" );
		else
			printf( "%d\n", ans );
	}
}


  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值