A1520.[COCI-2013_2014-contest4]#1 GMO
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
A multinational company is asking you to help them genetically modify an apple. In order for the apples to grow faster, to get more of them, to make them bigger and make them look nicer and more simmetrical, the apple's DNA requires an insertion of a certain swine gene.
The apple's DNA is represented by a series of characters from the set {A, C, G, T}. The required swine gene is also comprised of charaters from this set. The apple's DNA should be injected with some characters into some places, so that the resulting sequence contains a swine gene somewhere (in successive locations). To make things a bit more complicated, inserting each of the characters A, C, G, T has its own cost.
Help this multinational company in achieving their goal with the lowest possible total cost. As a reward, you get a ton of their apples.
输入格式
The first line of input contains a sequence of N (1 ≤ N ≤ 10 000) characters which represent the apple's DNA.
The second line of input contains a sequence of M (1 ≤ M ≤ 5 000) characters which represent the swine gene that we want to insert into the apple's DNA.
Both the sequences are comprised only of characters from the set {A, C, G, T}.
The third line of input contains four integers from the interval [0, 1000]: the cost of inserting one character A, C, G, T, in that order.
输出格式
The first and only line of output must contains the minimal total cost.
输入输出样例
输入#1
GTA CAT 5 7 1 3
输出#1
10
输入#2
TATA CACA 3 0 3 0
输出#2
3
输入#3
TCGCGAG TGCAG 10 10 15 15
输出#3
25
说明/提示
In test cases worth 80% of total points, N and M will not exceed 2000.
Clarification of the first example: Some of the possible solutions are GCATA and GTCAT (the
inserted characters are bolded), the first solution costs 7 + 5, the second 7 + 3.