21678_Thereisawar

2022-5-16 18:20| 发布者: Hocassian| 查看: 26| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-4-89505751843300-Problem List-采集的数据-后羿采集器.html

Pro.ID

21678

Title

There is a war

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21678

AC

0

Submit

0

Ratio

-

时间&空间限制

  • Time Limit: 2000/1000 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

         There is a sea.

         There are N islands in the sea.

         There are some directional bridges connecting these islands.

         There is a country called Country One located in Island 1.

         There is another country called Country Another located in Island N.

         There is a war against Country Another, which launched by Country One.

         There is a strategy which can help Country Another to defend this war by destroying the bridges for the purpose of making Island 1 and Island n disconnected.

         There are some different destroying costs of the bridges.

         There is a prophet in Country Another who is clever enough to find the minimum total destroying costs to achieve the strategy.

         There is an architecture in Country One who is capable enough to rebuild a bridge to make it unbeatable or build a new invincible directional bridge between any two countries from the subset of island 2 to island n-1.

         There is not enough time for Country One, so it can only build one new bridge, or rebuild one existing bridge before the Country Another starts destroying, or do nothing if happy.

         There is a problem: Country One wants to maximize the minimum total destroying costs Country Another needed to achieve the strategy by making the best choice. Then what's the maximum possible result?

    输入

         There are multiple cases in this problem.

         There is a line with an integer telling you the number of cases at the beginning.

         The are two numbers in the first line of every case, N ( 4 ≤ N ≤ 100 ) and M ( 0 ≤ Mn*(n-1)/2 ), indicating the number of islands and the number of bridges.

         There are M lines following, each one of which contains three integers a, b and c, with 1 ≤ a, bN and 1 ≤ c ≤ 10000, meaning that there is a directional bridge from a to b with c being the destroying cost.

         There are no two lines containing the same a and b.

    输出

    Description

         There is a sea.

         There are N islands in the sea.

         There are some directional bridges connecting these islands.

         There is a country called Country One located in Island 1.

         There is another country called Country Another located in Island N.

         There is a war against Country Another, which launched by Country One.

         There is a strategy which can help Country Another to defend this war by destroying the bridges for the purpose of making Island 1 and Island n disconnected.

         There are some different destroying costs of the bridges.

         There is a prophet in Country Another who is clever enough to find the minimum total destroying costs to achieve the strategy.

         There is an architecture in Country One who is capable enough to rebuild a bridge to make it unbeatable or build a new invincible directional bridge between any two countries from the subset of island 2 to island n-1.

         There is not enough time for Country One, so it can only build one new bridge, or rebuild one existing bridge before the Country Another starts destroying, or do nothing if happy.

         There is a problem: Country One wants to maximize the minimum total destroying costs Country Another needed to achieve the strategy by making the best choice. Then what's the maximum possible result?

    Input

         There are multiple cases in this problem.

         There is a line with an integer telling you the number of cases at the beginning.

         The are two numbers in the first line of every case, N ( 4 ≤ N ≤ 100 ) and M ( 0 ≤ Mn*(n-1)/2 ), indicating the number of islands and the number of bridges.

         There are M lines following, each one of which contains three integers a, b and c, with 1 ≤ a, bN and 1 ≤ c ≤ 10000, meaning that there is a directional bridge from a to b with c being the destroying cost.

         There are no two lines containing the same a and b.

    Output

    There is one line with one integer for each test case, telling the maximun possible result.

    Sample Input

    4
    4 0
    4 2
    1 2 2
    3 4 2
    4 3
    1 2 1
    2 3 1
    3 4 10
    4 3
    1 2 5
    2 3 2
    3 4 3

    Sample Output

    0
    2
    1
    3

    Source

    样例输入

    4
    4 0
    4 2
    1 2 2
    3 4 2
    4 3
    1 2 1
    2 3 1
    3 4 10
    4 3
    1 2 5
    2 3 2
    3 4 3

    样例输出

    0
    2
    1
    3

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部