#Lutece0725. The Agency

The Agency

Migrated from Lutece 725 The Agency

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Following in the footsteps of a number of ight searching startups you want to create the first inter-planetary travel website. Your first problem is to quickly find the cheapest way to travel between two planets. You have an advantage over your competitors because you have realized that all the planets and the ights between them have a special structure. Each planet is represented by a string of NN-bits and there is a ight between two planets if their N-bit strings differ in exactly one position.

The cost of a ight is the cost of landing on the destination planet. If the ithi_{th} character in a planet's string is a 11 then the ithi_{th} tax must be paid to land. The cost of landing on a planet is the sum of the applicable taxes.

Given the starting planet, ending planet, and cost of the ithi_{th} tax compute the cheapest set of ights to get from the starting planet to the ending planet.

Input

Input for each test case will consist of two lines. The first line will have NN (1N1,0001 \le N \le 1,000), the number of bits representing a planet; SS, a string of NN zeroes and ones representing the starting planet; and EE,a string representing the ending planet in the same format. The second line will contain NN integers the ithi_{th} of which is the cost of the ithi_{th} tax. All costs will be between 11 and 1,000,0001,000,000. The input will be terminated by a line with a single 00.

Output

For each test case output one number, the minimum cost to get from the starting planet to the ending planet, using the format given below.

Samples

3 110 011
3 1 2
5 00000 11111
1 2 3 4 5
4 1111 1000
100 1 1 1
30 000000000000000000000000000000 111111111111111111111111111111
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
0
Case 1: 4
Case 2: 35
Case 3: 106
Case 4: 4960

Resources

2011 East Central Regional Contest