CF1095F.Make It Connected

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected graph consisting of nn vertices. A number is written on each vertex; the number on vertex ii is aia_i . Initially there are no edges in the graph.

You may add some edges to this graph, but you have to pay for them. The cost of adding an edge between vertices xx and yy is ax+aya_x + a_y coins. There are also mm special offers, each of them is denoted by three numbers xx , yy and ww , and means that you can add an edge connecting vertices xx and yy and pay ww coins for it. You don't have to use special offers: if there is a pair of vertices xx and yy that has a special offer associated with it, you still may connect these two vertices paying ax+aya_x + a_y coins for it.

What is the minimum number of coins you have to spend to make the graph connected? Recall that a graph is connected if it's possible to get from any vertex to any other vertex using only the edges belonging to this graph.

输入格式

The first line contains two integers nn and mm ( 1n21051 \le n \le 2 \cdot 10^5 , 0m21050 \le m \le 2 \cdot 10^5 ) — the number of vertices in the graph and the number of special offers, respectively.

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai10121 \le a_i \le 10^{12} ) — the numbers written on the vertices.

Then mm lines follow, each containing three integers xx , yy and ww ( 1x,yn1 \le x, y \le n , 1w10121 \le w \le 10^{12} , xyx \ne y ) denoting a special offer: you may add an edge connecting vertex xx and vertex yy , and this edge will cost ww coins.

输出格式

Print one integer — the minimum number of coins you have to pay to make the graph connected.

输入输出样例

  • 输入#1

    3 2
    1 3 3
    2 3 5
    2 1 1
    

    输出#1

    5
    
  • 输入#2

    4 0
    1 3 3 7
    

    输出#2

    16
    
  • 输入#3

    5 4
    1 2 3 4 5
    1 2 8
    1 3 10
    1 4 7
    1 5 15
    

    输出#3

    18
    

说明/提示

In the first example it is possible to connect 11 to 22 using special offer 22 , and then 11 to 33 without using any offers.

In next two examples the optimal answer may be achieved without using special offers.

首页