4.01串
(sequence.cpp/c/pas)
【问题描述】
给定7个整数N,A0,B0,L0,A1,B1,L1,要求设计一个01串S=s1s2…si…sN,满足:
si=0或si=1,1<=i<=N;对于S的任何连续的长度为L0的子串sjsj+1…sj+L0-1(1<=j<=N-L0+1),0的个数大于等于A0且小于等于B0;对于S的任何连续的长度为L1的子串sjsj+1…sj+L1-1(1<=j<=N-L1+1),1的个数大于等于A1且小于等于B1;例如,N=6,A0=1,B0=2,L0=3,A1=1,B1=1,L1=2,则存在一个满足上述所有条件的01串S=010101。
【输入】
仅一行,有7个整数,依次表示N,A0,B0,L0,A1,B1,L1(3<=N<=1000,1<=
A0<=B0<=L0<=N,1<=A1<=B1<=L1<=N),相邻两个整数之间用一个空格分隔。
【输出】
仅一行,若不存在满足所有条件的01串,则输出一个整数-1,否则输出一个满足所有条件的01串。
【输入输出样例】
sequence.in
sequence.out
6 1 2 3 1 1 2
010101
#include<cstdio>
#include<cstring>
#include<iostream>
#include<cstdlib>
using namespace std;
int n,a0,b0,l0,a1,b1,l1,T;
bool s[1010],flag;
int cnt1[1010],cnt0[1010];
inline void dfs(int dep)
{
if(dep==n+1)
{
for(int j=1;j<=n;j++)printf("%d",s[j]);
printf("\n");
flag=1;exit(0);
}
cnt1[dep]=cnt1[dep-1]-(dep>l1?s[dep-l1]==1:0);
cnt0[dep]=cnt0[dep-1]-(dep>l0?s[dep-l0]==0:0);
s[dep]=0;cnt0[dep]++;
if((dep<l0||(cnt0[dep]>=a0&&cnt0[dep]<=b0))&&(dep<l1||(cnt1[dep]>=a1&&cnt1[dep]<=b1)))dfs(dep+1);
s[dep]=1;cnt1[dep]++,cnt0[dep]--;
if((dep<l0||(cnt0[dep]>=a0&&cnt0[dep]<=b0))&&(dep<l1||(cnt1[dep]>=a1&&cnt1[dep]<=b1)))dfs(dep+1);
}
int main()
{
freopen("sequence.in","r",stdin);
freopen("sequence.out","w",stdout);
scanf("%d%d%d%d%d%d%d",&n,&a0,&b0,&l0,&a1,&b1,&l1);
dfs(1);
if(!flag)printf("-1\n");
fclose(stdin);fclose(stdout);
return 0;
}