

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
注意
この問題に対する言及は、2020/11/8 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。 試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。
問題文
から までの番号がついた 個の町があります。 本の道路があり、 番目の道路は町 と町 を双方向に結んでいて、通ると の疲労度がたまります。
どの つの町も、その間を直接結んでいる道路は多くとも つで、どの つの町もいくつかの道路を辿って行き来できます。
また、それぞれの町にはタイプ A, タイプ B, タイプ C のいずれかのワープ台があります。ワープ台の配置は文字列 によって与えられ、町 のワープ台のタイプは です。どの町にも存在しないワープ台のタイプがあるかもしれません。
違うタイプのワープ台を持つ つの町の間はワープすることができ、ワープの際にたまる疲労度は以下の通りです。
- タイプ A のある町とタイプ B のある町の間のワープ :
- タイプ A のある町とタイプ C のある町の間のワープ :
- タイプ B のある町とタイプ C のある町の間のワープ :
同じタイプのワープ台を持つ町の間はワープできません。
町 から町 へ道路とワープのみを使って行く際に合計でたまる疲労度の最小値を求めてください。
制約
- は長さ の、
A
,B
,C
からなる文字列 - どの つの町も、その間を直接結んでいる道路は多くとも つ
- どの つの町も、いくつかの道路を辿って行き来できる
- 入力は 以外全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
町 から町 へ行く際に合計でたまる疲労度の最小値を出力せよ。
入力例 1Copy
3 2 10 10 10 ABA 1 2 15 2 3 5
出力例 1Copy
15
まず町 から町 に (タイプ A からタイプ B へ) ワープし、 番目の道路を使って町 から町 へ行くと、 の疲労度で到達でき、最適です。
町 と町 は両方タイプ A のワープ台があるので直接ワープすることはできないことに注意してください。
入力例 2Copy
3 2 10 1000000000 10 ABC 1 2 1000000000 2 3 1000000000
出力例 2Copy
20
町 から町 に (タイプ A からタイプ B へ) ワープし、更に町 から町 に (タイプ B からタイプ C へ) ワープすると の疲労度で到達でき、最適です。
この場合町 から町 に直接ワープ可能ですが、タイプ A から タイプ C へのワープのため の疲労度がかかるので最適ではありません。
入力例 3Copy
5 6 5 10 15 ABCBC 5 4 4 3 5 2 1 3 7 3 4 1 4 2 1 2 3 3
出力例 3Copy
8
Score : points
Warning
Do not make any mention of this problem until November 8, 2020, 6:00 p.m. JST. In case of violation, compensation may be demanded. After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).
Problem Statement
There are towns numbered through , and roads. The -th road connects Town and Town bidirectionally, and you get points of fatigue when you pass through that road. For every pair of towns, there is at most one road that directly connects those towns, and it is possible to travel between those towns by traversing some roads. Additionally, each town has a teleporter of type A, type B, or type C. The placement of teleporters is given to you by a string ; the teleporter in Town is of type . There may be some types of teleporters that do not exist in any towns. You can teleport between two towns with different types of teleporters. When you do so, you get the following points of fatigue:
- points when teleporting between towns with teleporters of type A and type B;
- points when teleporting between towns with teleporters of type A and type C;
- points when teleporting between towns with teleporters of type B and type C.
You cannot teleport between towns with the same type of teleporter. Find the minimum possible total points of fatigue you get when going from Town to Town only using roads and teleporters.
Constraints
- is a string of length consisting of
A
,B
, andC
. - For every pair of towns, there is at most one road that directly connects those towns.
- For every pair of towns, it is possible to travel between those towns by traversing some roads.
- All values in input, except , are integers.
Input
Input is given from Standard Input in the following format:
Output
Find the minimum possible total points of fatigue you get when going from Town to Town .
Sample Input 1Copy
3 2 10 10 10 ABA 1 2 15 2 3 5
Sample Output 1Copy
15
If you first teleport from Town (type A) to Town (type B) and then use the -nd road to go from Town to Town , you get points of fatigue, which is optimal. Note that both Town and Town have a teleporter of type A, so you cannot directly teleport between them.
Sample Input 2Copy
3 2 10 1000000000 10 ABC 1 2 1000000000 2 3 1000000000
Sample Output 2Copy
20
If you first teleport from Town (type A) to Town (type B) and from Town (type B) to Town (type C), you will get points of fatigue, which is optimal. Note that you can teleport from Town to Town directly this time, but it is not optimal since teleporting from a teleporter of type A to that of type C costs points of fatigue.
Sample Input 3Copy
5 6 5 10 15 ABCBC 5 4 4 3 5 2 1 3 7 3 4 1 4 2 1 2 3 3
Sample Output 3Copy
8