#D598. Palindromize

    ID: 490 Type: Default 2000ms 256MiB

Palindromize

Palindromize

A string a of length m is called antipalindromic iff m is even, and for each i (1 ≤ i ≤ m) ai ≠ am - i + 1.

Ivan has a string s consisting of n lowercase Latin letters; n is even. He wants to form some string t that will be an antipalindromic permutation of s. Also Ivan has denoted the beauty of index i as bi, and the beauty of t as the sum of bi among all indices i such that si = ti.

Help Ivan to determine maximum possible beauty of t he can get.

Input

The first line contains one integer n (2 ≤ n ≤ 100, n is even) — the number of characters in s.

The second line contains the string s itself. It consists of only lowercase Latin letters, and it is guaranteed that its letters can be reordered to form an antipalindromic string.

The third line contains n integer numbers b1, b2, ..., bn (1 ≤ bi ≤ 100), where bi is the beauty of index i.

Output

Print one number — the maximum possible beauty of t.

Examples

Input

8 abacabac 1 1 1 1 1 1 1 1

Output

8

Input

8 abaccaba 1 2 3 4 5 6 7 8

Output

26

Input

8 abacabca 1 2 3 4 4 3 2 1

Output

17

inputFormat

Input

The first line contains one integer n (2 ≤ n ≤ 100, n is even) — the number of characters in s.

The second line contains the string s itself. It consists of only lowercase Latin letters, and it is guaranteed that its letters can be reordered to form an antipalindromic string.

The third line contains n integer numbers b1, b2, ..., bn (1 ≤ bi ≤ 100), where bi is the beauty of index i.

outputFormat

Output

Print one number — the maximum possible beauty of t.

Examples

Input

8 abacabac 1 1 1 1 1 1 1 1

Output

8

Input

8 abaccaba 1 2 3 4 5 6 7 8

Output

26

Input

8 abacabca 1 2 3 4 4 3 2 1

Output

17

样例

8
abaccaba
1 2 3 4 5 6 7 8
26

</p>