CF507E.Breaking Good

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Breaking Good is a new video game which a lot of gamers want to have. There is a certain level in the game that is really difficult even for experienced gamers.

Walter William, the main character of the game, wants to join a gang called Los Hermanos (The Brothers). The gang controls the whole country which consists of nn cities with mm bidirectional roads connecting them. There is no road is connecting a city to itself and for any two cities there is at most one road between them. The country is connected, in the other words, it is possible to reach any city from any other city using the given roads.

The roads aren't all working. There are some roads which need some more work to be performed to be completely functioning.

The gang is going to rob a bank! The bank is located in city 11 . As usual, the hardest part is to escape to their headquarters where the police can't get them. The gang's headquarters is in city nn . To gain the gang's trust, Walter is in charge of this operation, so he came up with a smart plan.

First of all the path which they are going to use on their way back from city 11 to their headquarters nn must be as short as possible, since it is important to finish operation as fast as possible.

Then, gang has to blow up all other roads in country that don't lay on this path, in order to prevent any police reinforcements. In case of non-working road, they don't have to blow up it as it is already malfunctional.

If the chosen path has some roads that doesn't work they'll have to repair those roads before the operation.

Walter discovered that there was a lot of paths that satisfied the condition of being shortest possible so he decided to choose among them a path that minimizes the total number of affected roads (both roads that have to be blown up and roads to be repaired).

Can you help Walter complete his task and gain the gang's trust?

输入格式

The first line of input contains two integers n,mn,m ( 2<=n<=1052<=n<=10^{5} , ), the number of cities and number of roads respectively.

In following mm lines there are descriptions of roads. Each description consists of three integers x,y,zx,y,z ( 1<=x,y<=n1<=x,y<=n , ) meaning that there is a road connecting cities number xx and yy . If z=1z=1 , this road is working, otherwise it is not.

输出格式

In the first line output one integer kk , the minimum possible number of roads affected by gang.

In the following kk lines output three integers describing roads that should be affected. Each line should contain three integers x,y,zx,y,z ( 1<=x,y<=n1<=x,y<=n , ), cities connected by a road and the new state of a road. z=1z=1 indicates that the road between cities xx and yy should be repaired and z=0z=0 means that road should be blown up.

You may output roads in any order. Each affected road should appear exactly once. You may output cities connected by a single road in any order. If you output a road, it's original state should be different from zz .

After performing all operations accroding to your plan, there should remain working only roads lying on some certain shortest past between city 11 and nn .

If there are multiple optimal answers output any.

输入输出样例

  • 输入#1

    2 1
    1 2 0
    

    输出#1

    1
    1 2 1
    
  • 输入#2

    4 4
    1 2 1
    1 3 0
    2 3 1
    3 4 1
    

    输出#2

    3
    1 2 0
    1 3 1
    2 3 0
    
  • 输入#3

    8 9
    1 2 0
    8 3 0
    2 3 1
    1 4 1
    8 7 0
    1 5 1
    4 6 1
    5 7 0
    6 8 0
    

    输出#3

    3
    2 3 0
    1 5 0
    6 8 1
    

说明/提示

In the first test the only path is 121-2

In the second test the only shortest path is 1341-3-4

In the third test there are multiple shortest paths but the optimal is 14681-4-6-8

首页