CF447B.DZY Loves Strings

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter cc DZY knows its value wcw_{c} . For each special string s=s1s2... sss=s_{1}s_{2}...\ s_{|s|} ( s|s| is the length of the string) he represents its value with a function f(s)f(s) , where

Now DZY has a string ss . He wants to insert kk lowercase letters into this string in order to get the largest possible value of the resulting string. Can you help him calculate the largest possible value he could get?

输入格式

The first line contains a single string s (1<=s<=103)s (1<=|s|<=10^{3}) .

The second line contains a single integer k (0<=k<=103)k (0<=k<=10^{3}) .

The third line contains twenty-six integers from waw_{a} to wzw_{z} . Each such number is non-negative and doesn't exceed 10001000 .

输出格式

Print a single integer — the largest possible value of the resulting string DZY could get.

输入输出样例

  • 输入#1

    abc
    3
    1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
    

    输出#1

    41
    

说明/提示

In the test sample DZY can obtain "abcbbc", value=11+22+32+42+52+62=41value=1·1+2·2+3·2+4·2+5·2+6·2=41 .

首页