閱讀205 返回首頁    go 阿裏雲 go 技術社區[雲棲]


codeforces-447B-DZY Loves Strings

DZY Loves Strings
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter c DZY knows its value wc. For each special string s?=?s1s2... s|s| (|s| is the length of the string) he represents its value with a function f(s), where

Now DZY has a string s. He wants to insert k 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?

Input
The first line contains a single string s (1?≤?|s|?≤?103).

The second line contains a single integer k (0?≤?k?≤?103).

The third line contains twenty-six integers from wa to wz. Each such number is non-negative and doesn't exceed 1000.

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

Sample test(s)
input
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
output
41
Note
In the test sample DZY can obtain "abcbbc", value=1·1+2·2+3·2+4·2+5·2+6·2=41.






練練codeforces的評測
簡單的字符串處理

AC代碼:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
char s[2000];
int a[30];
int main()
{
    int i,m,n,sum=0,max;
    scanf("%s %d",s,&n);
    for(i=0;i<26;i++)
    scanf("%d",&a[i]);
    m=strlen(s);
    for(i=0;i<m;i++)
    sum+=(i+1)*a[s[i]-'a'];
    max=*max_element(a,a+26);
    i=m+1;
    while(n--)
    {
       sum+=i*max;
       i++;
    }
    printf("%d\n",sum);
    return 0;
}

最後更新:2017-04-03 05:39:25

  上一篇:go github空間配額說明
  下一篇:go c# 命名空間、dll、與函數