CF706C.Hard problem

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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 nn strings consisting of lowercase English letters. He wants them to be sorted in lexicographical order (as in the dictionary), but he is not allowed to swap any of them. The only operation he is allowed to do is to reverse any of them (first character becomes last, second becomes one before last and so on).

To reverse the ii -th string Vasiliy has to spent cic_{i} units of energy. He is interested in the minimum amount of energy he has to spent in order to have strings sorted in lexicographical order.

String AA is lexicographically smaller than string BB if it is shorter than BB ( A<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 AA is smaller than the character in BB .

For the purpose of this problem, two equal strings nearby do not break the condition of sequence being sorted lexicographically.

输入格式

The first line of the input contains a single integer nn ( 2<=n<=1000002<=n<=100000 ) — the number of strings.

The second line contains nn integers cic_{i} ( 0<=ci<=1090<=c_{i}<=10^{9} ), the ii -th of them is equal to the amount of energy Vasiliy has to spent in order to reverse the ii -th string.

Then follow nn lines, each containing a string consisting of lowercase English letters. The total length of these strings doesn't exceed 100000100000 .

输出格式

If it is impossible to reverse some of the strings such that they will be located in lexicographical order, print 1-1 . Otherwise, print the minimum total amount of energy Vasiliy has to spent.

输入输出样例

  • 输入#1

    2
    1 2
    ba
    ac
    

    输出#1

    1
    
  • 输入#2

    3
    1 3 1
    aa
    ba
    ac
    

    输出#2

    1
    
  • 输入#3

    2
    5 5
    bbb
    aaa
    

    输出#3

    -1
    
  • 输入#4

    2
    3 3
    aaa
    aa
    

    输出#4

    -1
    

说明/提示

In the second sample one has to reverse string 22 or string 33 . To amount of energy required to reverse the string 33 is smaller.

In the third sample, both strings do not change after reverse and they go in the wrong order, so the answer is 1-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-1 .

首页