1795Match for Bonus

1795   Match for Bonus

题目描述

Roy played a game with his roommates the other day.

His roommates wrote 2 strings of characters, and gave each character a bonus value. When Roy pinned the positions of one common character in the 2 strings, the bonus value of that character would be added to Roy's score. However at the mean time, the 2 characters and those before them in the strings would be erased.

Roy now needs your help, because he wants to know the maximum score he can get.

输入格式:

There are several test cases.

For each test case, the first line contains an integer N.

The following N lines describe a list of N characters and their bonus values.

Then the following 2 lines give the 2 strings.

输出格式:

For each test case, output in one line the best score Roy can get.

输入样例 复制
3
a 1
b 1
c 1
abc
bca
3
a 1
b 10
c 100
abc
cab
输出样例 复制
2
100

说明

1
9
通过提交
时空限制2000ms/64mb
题目来源
评测方式在线评测
题目类型
难        度