Algorithm


B. String Problem
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Boy Valera likes strings. And even more he likes them, when they are identical. That's why in his spare time Valera plays the following game. He takes any two strings, consisting of lower case Latin letters, and tries to make them identical. According to the game rules, with each move Valera can change one arbitrary character Ai in one of the strings into arbitrary character Bi, but he has to pay for every move a particular sum of money, equal to Wi. He is allowed to make as many moves as he needs. Since Valera is a very economical boy and never wastes his money, he asked you, an experienced programmer, to help him answer the question: what minimum amount of money should Valera have to get identical strings.

Input

The first input line contains two initial non-empty strings s and t, consisting of lower case Latin letters. The length of each string doesn't exceed 105. The following line contains integer n (0 ≤ n ≤ 500) — amount of possible changings. Then follow n lines, each containing characters Ai and Bi (lower case Latin letters) and integer Wi (0 ≤ Wi ≤ 100), saying that it's allowed to change character Ai into character Bi in any of the strings and spend sum of money Wi.

Output

If the answer exists, output the answer to the problem, and the resulting string. Otherwise output -1 in the only line. If the answer is not unique, output any.

Examples
input
Copy
uayd
uxxd
3
a x 8
x y 13
d c 3
output
Copy
21
uxyd
input
Copy
a
b
3
a b 2
a b 3
b a 5
output
Copy
2
b
input
Copy
abc
ab
6
a b 4
a b 7
b a 8
c b 11
c a 3
a c 0
output
Copy
-1



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

int const N = 26, OO = 1e9;
int floyd[N][N];

int main() {
  for(int i = 0; i < N; i++) {
    fill(floyd[i], floyd[i] + N, OO);
    floyd[i][i] = 0;
  }
  
  string s1, s2;
  cin >> s1 >> s2;
  
  int n;
  cin >> n;
  
  char ca, cb;
  int a, b, c;
  for(int i = 0; i < n; i++) {
    cin >> ca >> cb >> c;
    a = ca - 'a';
    b = cb - 'a';
    floyd[a][b] = min(floyd[a][b], c);
  }
  
  if(s1.length() != s2.length()) {
    cout << -1 << endl;
    return 0;
  }
  
  for(int k = 0; k < N; k++)
    for(int i = 0; i < N; i++)
      for(int j = 0; j < N; j++)
        floyd[i][j] = min(floyd[i][j], floyd[i][k] + floyd[k][j]);
  
  int res = 0, res2;
  string s = "";
  char tmp;
  for(int i = 0; i < s1.length(); i++) {
    if(floyd[s1[i]-'a'][s2[i]-'a'] == OO && floyd[s2[i]-'a'][s1[i]-'a'] == OO) {
      res2 = OO;
      for(char ch = 'a'; ch <= 'z'; ch++)
        if(floyd[s1[i]-'a'][ch-'a'] != OO && floyd[s2[i]-'a'][ch-'a'] != OO && floyd[s1[i]-'a'][ch-'a'] + floyd[s2[i]-'a'][ch-'a'] < res2) {
          res2 = floyd[s1[i]-'a'][ch-'a'] + floyd[s2[i]-'a'][ch-'a'];
          tmp = ch;
        }
      
      if(res2 == OO) {
        cout << -1 << endl;
        return 0;
      } else {
        res += res2;
        s += tmp;
      }
    } else if(s1[i] != s2[i]) {
      res += min(floyd[s1[i]-'a'][s2[i]-'a'], floyd[s2[i]-'a'][s1[i]-'a']);
      
      if(floyd[s1[i]-'a'][s2[i]-'a'] < floyd[s2[i]-'a'][s1[i]-'a'])
        s += s2[i];
      else
        s += s1[i];
      
      res2 = OO;
      for(char ch = 'a'; ch <= 'z'; ch++)
        if(floyd[s1[i]-'a'][ch-'a'] != OO && floyd[s2[i]-'a'][ch-'a'] != OO && floyd[s1[i]-'a'][ch-'a'] + floyd[s2[i]-'a'][ch-'a'] < res2) {
          res2 = floyd[s1[i]-'a'][ch-'a'] + floyd[s2[i]-'a'][ch-'a'];
          tmp = ch;
        }
      
      if(res2 < min(floyd[s1[i]-'a'][s2[i]-'a'], floyd[s2[i]-'a'][s1[i]-'a'])) {
        res -= min(floyd[s1[i]-'a'][s2[i]-'a'], floyd[s2[i]-'a'][s1[i]-'a']);
        res += res2;
        s[i] = tmp;
      }
    } else
      s += s1[i];
  }
  
  cout << res << endl;
  cout << s << endl;
  
  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
uayd
uxxd
3
a x 8
x y 13
d c 3

Output

x
+
cmd
21
uxyd
Advertisements

Demonstration


Codeforcess Solution  String Problem, B. String Problem C,C++, Java, Js and Python ,B. String Problem,String Problem,Codeforcess Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+