CF332E.Binary Key

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Let's assume that pp and qq are strings of positive length, called the container and the key correspondingly, string qq only consists of characters 0 and 1. Let's take a look at a simple algorithm that extracts message ss from the given container pp :

<br></br>i = 0;<br></br>j = 0;<br></br>s = <>;<br></br>while i is less than the length of the string p<br></br>{<br></br> if q[j] == 1, then add to the right of string s character p[i];<br></br> increase variables i, j by one;<br></br> if the value of the variable j equals the length of the string q, then j = 0; <br></br>}<br></br>In the given pseudocode ii , jj are integer variables, ss is a string, '=' is an assignment operator, '==' is a comparison operation, '[]' is the operation of obtaining the string character with the preset index, '<>' is an empty string. We suppose that in all strings the characters are numbered starting from zero.

We understand that implementing such algorithm is quite easy, so your task is going to be slightly different. You need to construct the lexicographically minimum key of length kk , such that when it is used, the algorithm given above extracts message ss from container pp (otherwise find out that such key doesn't exist).

输入格式

The first two lines of the input are non-empty strings pp and ss ( 1<=p<=1061<=|p|<=10^{6} , 1<=s<=2001<=|s|<=200 ), describing the container and the message, correspondingly. The strings can contain any characters with the ASCII codes from 32 to 126, inclusive.

The third line contains a single integer kk ( 1<=k<=2000)1<=k<=2000) — the key's length.

输出格式

Print the required key (string of length kk , consisting only of characters 0 and 1). If the key doesn't exist, print the single character 0.

输入输出样例

  • 输入#1

    abacaba
    aba
    6
    

    输出#1

    100001
    
  • 输入#2

    abacaba
    aba
    3
    

    输出#2

    0
    

说明/提示

String x=x1x2... xpx=x_{1}x_{2}...\ x_{p} is lexicographically smaller than string y=y1y2... yqy=y_{1}y_{2}...\ y_{q} , if either p<q and x1=y1,x2=y2,... ,xp=ypx_{1}=y_{1},x_{2}=y_{2},...\ ,x_{p}=y_{p} , or there exists such integer rr ( 0<=r<min(p,q)) that x1=y1,x2=y2,... ,xr=yrx_{1}=y_{1},x_{2}=y_{2},...\ ,x_{r}=y_{r} and x_{r+1}<y_{r+1} . Symbols are compared according to their ASCII codes.

首页