Problem - C - Codeforces
思路:根据题意我们能够知道就是对于每一位都要再区间范围内,并且不是s的子序列,我们先看第一位,第一位有l[1]-r[1]这几种选择,假如说某一种选择在s中没有那么我们就选择以这个开头的作为答案,否则则这几种选择都存在,那么假如说最开始的位置是a1,a2,a3,那么如果我们把a1对应的数作为第一位,那么我们就需要确定存不存在一种选择方法使得在a1+1~n中不存在,2~m的某种选择,同理a2则是从a2+1开始的,那么我们就发现了,如果我们第一位选择对应的位置越大,后面的剩余的序列就越少,所以匹配不成功的概率就越大,这里可以使用一个string的函数find(a,b)来从b开始查找,找第一个等于a的位置,如果找不到则返回string::npos
// Problem: C. Strong Password
// Contest: Codeforces - Educational Codeforces Round 151 (Rated for Div. 2)
// URL: https://codeforces.com/contest/1845/problem/C
// Memory Limit: 256 MB
// Time Limit: 2000 ms#include<iostream>
#include<cstring>
#include<string>
#include<sstream>
#include<cmath>
#include<cstdio>
#include<algorithm>
#include<queue>
#include<map>
#include<stack>
#include<vector>
#include<set>
#include<unordered_map>
#include<ctime>
#include<cstdlib>
#define fi first
#define se second
#define i128 __int128
using namespace std;
typedef long long ll;
typedef double db;
typedef pair<int,int> PII;
typedef pair<int,pair<int,int> > PIII;
const double eps=1e-7;
const int N=5e5+7 ,M=5e5+7, INF=0x3f3f3f3f,mod=1e9+7,mod1=998244353;
const long long int llINF=0x3f3f3f3f3f3f3f3f;
inline ll read() {ll x=0,f=1;char c=getchar();while(c<'0'||c>'9') {if(c=='-') f=-1;c=getchar();}
while(c>='0'&&c<='9') {x=(ll)x*10+c-'0';c=getchar();} return x*f;}
inline void write(ll x) {if(x < 0) {putchar('-'); x = -x;}if(x >= 10) write(x / 10);putchar(x % 10 + '0');}
inline void write(ll x,char ch) {write(x);putchar(ch);}
void stin() {freopen("in_put.txt","r",stdin);freopen("my_out_put.txt","w",stdout);}
bool cmp0(int a,int b) {return a>b;}
template<typename T> T gcd(T a,T b) {return b==0?a:gcd(b,a%b);}
template<typename T> T lcm(T a,T b) {return a*b/gcd(a,b);}
void hack() {printf("\n----------------------------------\n");}int T,hackT;
int n,m,k;
string str;
int l[N],r[N];
int w[N];void solve() {cin>>str;m=read();for(int i=1;i<=m;i++) scanf("%1d",&l[i]);for(int i=1;i<=m;i++) scanf("%1d",&r[i]);int cur=0;for(int i=1;i<=m;i++) {int res=0;for(int j=l[i];j<=r[i];j++) {int temp=str.find(j+'0',cur);if(temp==string::npos) {printf("YES\n");return ;}else res=max(res,temp);}cur=res+1;}printf("NO\n");
} int main() {// init();// stin();scanf("%d",&T);// T=1; while(T--) hackT++,solve();return 0;
}