C. Hard problem
time limit per test 1 second
memory limit per test 256 megabytes
input standard input
output standard output
Vasiliy is fond of solving different tasks. Today he found one he wasn't able to solve himself, so he asks you to help.
Vasiliy is given n
To reverse the i-th string Vasiliy has to spent ci
String A is lexicographically smaller than string B if it is shorter than B (|A| < |B|) and is its prefix, or if none of them is a prefix of the other and at the first position where they differ character in A is smaller than the character in B.
For the purpose of this problem, two equal strings nearby do not break the condition of sequence being sorted lexicographically.
Input
The first line of the input contains a single integer n (2 ≤ n ≤ 100 000) — the number of strings.
The second line contains n integers ci (0 ≤ ci ≤ 109), the i-th of them is equal to the amount of energy Vasiliy has to spent in order to reverse the i-th string.
Then follow n lines, each containing a string consisting of lowercase English letters. The total length of these strings doesn't exceed100 000.
Output
If it is impossible to reverse some of the strings such that they will be located in lexicographical order, print - 1. Otherwise, print the minimum total amount of energy Vasiliy has to spent.
Examples
input
output
input
output
input
output
input
output
Note
In the second sample one has to reverse string 2 or string 3. To amount of energy required to reverse the string 3
In the third sample, both strings do not change after reverse and they go in the wrong order, so the answer is - 1.
In the fourth sample, both strings consists of characters 'a' only, but in the sorted order string "aa" should go before string "aaa", thus the answer is - 1.
题解:给你n个串,要你求:要使这n个串的字典序从小到大,要消耗的费用最小是多少。改变字典序只能通过反串来改变。
dp[i][0]表示到第i个字符串,第i个字符串不翻转,能消耗的最小值。
dp[i][1]表示到第i个字符串,第i个字符串翻转,能消耗的最小值。
详细看代码。
AC代码: