跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F0865. Selling Numbers

    ID: 871 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>动态规划排序编程与模拟挑战难度共享题库Codeforces英文题面题目来源题面语言

Selling Numbers

题目描述

E. Selling Numbers
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Boris really likes numbers and even owns a small shop selling interesting numbers. He has n decimal numbers Bi. Cost of the number in his shop is equal to the sum of costs of its digits. You are given the values cd, where cd is the cost of the digit d. Of course, Boris is interested in that numbers he owns have the maximum cost possible.

Recently Boris got hold of the magical artifact A, which can allow him to increase the cost of his collection. Artifact is a string, consisting of digits and '?' symbols. To use the artifact, Boris must replace all '?' with digits to get a decimal number without leading zeros (it is also not allowed to get number 0). After that, the resulting number is added to all numbers Bi in Boris' collection. He uses the artifact exactly once.

What is the maximum cost of the collection Boris can achieve after using the artifact?

Input

First line contains artifact A, consisting of digits '0'—'9' and '?' symbols (1≤|A|≤1000). Next line contains n− the amount of numbers in Boris' collection (1≤n≤1000). Next n lines contain integers Bi (1≤Bi<101000). A doesn't start with '0'.

Last line contains ten integers− costs of digits c0,c1,...,c9 (0≤ci≤1000).

Output

Output one integer− the maximum possible cost of the collection after using the artifact.

Examples
Input
42
3
89
1
958
0 0 1 1 2 2 3 3 4 4
Output
4
Input
?5?
4
2203
5229
276
6243
2 1 6 1 1 2 5 2 2 3
Output
62
Note

In the second sample input, the optimal way is to compose the number 453. After adding this number, Boris will have numbers 2656, 5682, 729 and 6696. The total cost of all digits in them is equal to 18+15+11+18=62.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 295 题。保留原作者与原赛事署名。