J - ワープ Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 66

注意

この問題に対する言及は、2020/11/8 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。 試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。

問題文

11 から NN までの番号がついた NN 個の町があります。 MM 本の道路があり、ii 番目の道路は町 AiA_i と町 BiB_i を双方向に結んでいて、通ると CiC_i の疲労度がたまります。
どの 22 つの町も、その間を直接結んでいる道路は多くとも 11 つで、どの 22 つの町もいくつかの道路を辿って行き来できます。
また、それぞれの町にはタイプ A, タイプ B, タイプ C のいずれかのワープ台があります。ワープ台の配置は文字列 SS によって与えられ、町 ii のワープ台のタイプは SiS_i です。どの町にも存在しないワープ台のタイプがあるかもしれません。
違うタイプのワープ台を持つ 22 つの町の間はワープすることができ、ワープの際にたまる疲労度は以下の通りです。

  • タイプ A のある町とタイプ B のある町の間のワープ : XABX_{\mathrm{AB}}
  • タイプ A のある町とタイプ C のある町の間のワープ : XACX_{\mathrm{AC}}
  • タイプ B のある町とタイプ C のある町の間のワープ : XBCX_{\mathrm{BC}}

同じタイプのワープ台を持つ町の間はワープできません。
11 から町 NN へ道路とワープのみを使って行く際に合計でたまる疲労度の最小値を求めてください。

制約

  • 2N1052 \le N \le 10^5
  • 1M1051 \le M \le 10^5
  • 1XAB,XAC,XBC1091 \le X_{\mathrm{AB}}, X_{\mathrm{AC}}, X_{\mathrm{BC}} \le 10^9
  • SS は長さ NN の、A, B, C からなる文字列
  • 1AiN1 \le A_i \le N
  • 1BiN1 \le B_i \le N
  • AiBiA_i \neq B_i
  • 1Ci1091 \le C_i \le 10^9
  • どの 22 つの町も、その間を直接結んでいる道路は多くとも 11
  • どの 22 つの町も、いくつかの道路を辿って行き来できる
  • 入力は SS 以外全て整数

入力

入力は以下の形式で標準入力から与えられる。

NN MM
XABX_{\mathrm{AB}} XACX_{\mathrm{AC}} XBCX_{\mathrm{BC}}
SS
A1A_1 B1B_1 C1C_1
A2A_2 B2B_2 C2C_2
A3A_3 B3B_3 C3C_3
\hspace{25pt} \vdots
AMA_M BMB_M CMC_M

出力

11 から町 NN へ行く際に合計でたまる疲労度の最小値を出力せよ。


入力例 1Copy

Copy
3 2
10 10 10
ABA
1 2 15
2 3 5

出力例 1Copy

Copy
15

まず町 11 から町 22 に (タイプ A からタイプ B へ) ワープし、22 番目の道路を使って町 22 から町 33 へ行くと、10+5=1510 + 5 = 15 の疲労度で到達でき、最適です。
11 と町 33 は両方タイプ A のワープ台があるので直接ワープすることはできないことに注意してください。


入力例 2Copy

Copy
3 2
10 1000000000 10
ABC
1 2 1000000000
2 3 1000000000

出力例 2Copy

Copy
20

11 から町 22 に (タイプ A からタイプ B へ) ワープし、更に町 22 から町 33 に (タイプ B からタイプ C へ) ワープすると 10+10=2010 + 10 = 20 の疲労度で到達でき、最適です。
この場合町 11 から町 33 に直接ワープ可能ですが、タイプ A から タイプ C へのワープのため XAC=1000000000X_{\mathrm{AC}} = 1000000000 の疲労度がかかるので最適ではありません。


入力例 3Copy

Copy
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

Copy
8

Score : 66 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 NN towns numbered 11 through NN, and MM roads. The ii-th road connects Town AiA_i and Town BiB_i bidirectionally, and you get CiC_i 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 SS; the teleporter in Town ii is of type SiS_i. 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:

  • XABX_{\mathrm{AB}} points when teleporting between towns with teleporters of type A and type B;
  • XACX_{\mathrm{AC}} points when teleporting between towns with teleporters of type A and type C;
  • XBCX_{\mathrm{BC}} 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 11 to Town NN only using roads and teleporters.

Constraints

  • 2N1052 \le N \le 10^5
  • 1M1051 \le M \le 10^5
  • 1XAB,XAC,XBC1091 \le X_{\mathrm{AB}}, X_{\mathrm{AC}}, X_{\mathrm{BC}} \le 10^9
  • SS is a string of length NN consisting of A, B, and C.
  • 1AiN1 \le A_i \le N
  • 1BiN1 \le B_i \le N
  • AiBiA_i \neq B_i
  • 1Ci1091 \le C_i \le 10^9
  • 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 SS, are integers.

Input

Input is given from Standard Input in the following format:

NN MM
XABX_{\mathrm{AB}} XACX_{\mathrm{AC}} XBCX_{\mathrm{BC}}
SS
A1A_1 B1B_1 C1C_1
A2A_2 B2B_2 C2C_2
A3A_3 B3B_3 C3C_3
\hspace{25pt} \vdots
AMA_M BMB_M CMC_M

Output

Find the minimum possible total points of fatigue you get when going from Town 11 to Town NN.


Sample Input 1Copy

Copy
3 2
10 10 10
ABA
1 2 15
2 3 5

Sample Output 1Copy

Copy
15

If you first teleport from Town 11 (type A) to Town 22 (type B) and then use the 22-nd road to go from Town 22 to Town 33, you get 10+5=1510 + 5 = 15 points of fatigue, which is optimal. Note that both Town 11 and Town 33 have a teleporter of type A, so you cannot directly teleport between them.


Sample Input 2Copy

Copy
3 2
10 1000000000 10
ABC
1 2 1000000000
2 3 1000000000

Sample Output 2Copy

Copy
20

If you first teleport from Town 11 (type A) to Town 22 (type B) and from Town 22 (type B) to Town CC (type C), you will get 10+10=2010 + 10 = 20 points of fatigue, which is optimal. Note that you can teleport from Town 11 to Town 33 directly this time, but it is not optimal since teleporting from a teleporter of type A to that of type C costs XAC=1000000000X_{\mathrm{AC}} = 1000000000 points of fatigue.


Sample Input 3Copy

Copy
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

Copy
8


2025-04-05 (Sat)
02:34:12 +00:00