测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A12318. Postcard

编程题 普及/提高-

题目描述

Andrey received a postcard from Irina. It contained only the words "Hello, Andrey!", and a strange string consisting of lowercase Latin letters, snowflakes and candy canes. Andrey thought that this string is an encrypted message, and decided to decrypt it.

Andrey noticed that snowflakes and candy canes always stand after the letters, so he supposed that the message was encrypted as follows. Candy cane means that the letter before it can be removed, or can be left. A snowflake means that the letter before it can be removed, left, or repeated several times.

For example, consider the following string:

![](/uploads/acgo/image/77e92a7caf5f5525_f67d5288063f.jpeg)This string can encode the message «happynewyear». For this, candy canes and snowflakes should be used as follows:

- candy cane 1: remove the letter w,
- snowflake 1: repeat the letter p twice,
- candy cane 2: leave the letter n,
- snowflake 2: remove the letter w,
- snowflake 3: leave the letter e.

![](/uploads/acgo/image/0529c6b2dae5912d_e4a965878e86.jpeg)Please note that the same string can encode different messages. For example, the string above can encode «hayewyar», «happpppynewwwwwyear», and other messages.

Andrey knows that messages from Irina usually have a length of $k$ letters. Help him to find out if a given string can encode a message of $k$ letters, and if so, give an example of such a message.

输入格式

The first line contains the string received in the postcard. The string consists only of lowercase Latin letters, as well as the characters «\*» and «?», meaning snowflake and candy cone, respectively. These characters can only appear immediately after the letter. The length of the string does not exceed $200$ .

The second line contains an integer number $k$ ( $1 \leq k \leq 200$ ), the required message length.

输出格式

Print any message of length $k$ that the given string can encode, or «Impossible» if such a message does not exist.

输入输出样例

输入 #1
hw?ap*yn?eww*ye*ar
12
输出 #1
happynewyear
输入 #2
ab?a
2
输出 #2
aa
输入 #3
ab?a
3
输出 #3
aba
输入 #4
ababb
5
输出 #4
ababb
输入 #5
ab?a
1
输出 #5
Impossible
上一题 去做题 下一题