CF17B.Hierarchy

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nick's company employed nn people. Now Nick needs to build a tree hierarchy of «supervisor-surbodinate» relations in the company (this is to say that each employee, except one, has exactly one supervisor). There are mm applications written in the following form: «employee aia_{i} is ready to become a supervisor of employee bib_{i} at extra cost cic_{i} ». The qualification qjq_{j} of each employee is known, and for each application the following is true: qai>qbiq_{ai}>q_{bi} .

Would you help Nick calculate the minimum cost of such a hierarchy, or find out that it is impossible to build it.

输入格式

The first input line contains integer nn ( 1<=n<=10001<=n<=1000 ) — amount of employees in the company. The following line contains nn space-separated numbers qjq_{j} ( 0<=qj<=1060<=q_{j}<=10^{6} )— the employees' qualifications. The following line contains number mm ( 0<=m<=100000<=m<=10000 ) — amount of received applications. The following mm lines contain the applications themselves, each of them in the form of three space-separated numbers: aia_{i} , bib_{i} and cic_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n , 0<=ci<=1060<=c_{i}<=10^{6} ). Different applications can be similar, i.e. they can come from one and the same employee who offered to become a supervisor of the same person but at a different cost. For each application qai>qbiq_{ai}>q_{bi} .

输出格式

Output the only line — the minimum cost of building such a hierarchy, or -1 if it is impossible to build it.

输入输出样例

  • 输入#1

    4
    7 2 3 1
    4
    1 2 5
    2 4 1
    3 4 1
    1 3 5
    

    输出#1

    11
    
  • 输入#2

    3
    1 2 3
    2
    3 1 2
    3 1 3
    

    输出#2

    -1
    

说明/提示

In the first sample one of the possible ways for building a hierarchy is to take applications with indexes 1, 2 and 4, which give 11 as the minimum total cost. In the second sample it is impossible to build the required hierarchy, so the answer is -1.

首页