CF376B.I.O.U.

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Imagine that there is a group of three friends: A, B and С. A owes B 20 rubles and B owes C 20 rubles. The total sum of the debts is 40 rubles. You can see that the debts are not organized in a very optimal manner. Let's rearrange them like that: assume that A owes C 20 rubles and B doesn't owe anything to anybody. The debts still mean the same but the total sum of the debts now equals 20 rubles.

This task is a generalisation of a described example. Imagine that your group of friends has nn people and you know the debts between the people. Optimize the given debts without changing their meaning. In other words, finally for each friend the difference between the total money he should give and the total money he should take must be the same. Print the minimum sum of all debts in the optimal rearrangement of the debts. See the notes to the test samples to better understand the problem.

输入格式

The first line contains two integers nn and mm (1<=n<=100; 0<=m<=104)(1<=n<=100; 0<=m<=10^{4}) . The next mm lines contain the debts. The ii -th line contains three integers ai,bi,cia_{i},b_{i},c_{i} (1<=ai,bi<=n; aibi; 1<=ci<=100)(1<=a_{i},b_{i}<=n; a_{i}≠b_{i}; 1<=c_{i}<=100) , which mean that person aia_{i} owes person bib_{i} cic_{i} rubles.

Assume that the people are numbered by integers from 1 to nn .

It is guaranteed that the same pair of people occurs at most once in the input. The input doesn't simultaneously contain pair of people (x,y)(x,y) and pair of people (y,x)(y,x) .

输出格式

Print a single integer — the minimum sum of debts in the optimal rearrangement.

输入输出样例

  • 输入#1

    5 3
    1 2 10
    2 3 1
    2 4 1
    

    输出#1

    10
    
  • 输入#2

    3 0
    

    输出#2

    0
    
  • 输入#3

    4 3
    1 2 1
    2 3 1
    3 1 1
    

    输出#3

    0
    

说明/提示

In the first sample, you can assume that person number 1 owes 8 rubles to person number 2, 1 ruble to person number 3 and 1 ruble to person number 4. He doesn't owe anybody else anything. In the end, the total debt equals 10.

In the second sample, there are no debts.

In the third sample, you can annul all the debts.

首页