Fools and Foolproof Roads

题意翻译

给定 $n$ 个点 $m$ 条边的无向图,问是否能在图里添加 $p$ 条边使得加边后存在恰好 $q$ 个连通分量,同时请求出边权总和最小的方案。 新增边的边权为 $\min(10^{9}, S+1)$ 。其中 $S$ 为这条边连接的两个联通块的边权之和。特别地,如果新加的边的两个端点在同一个连通分量内边权固定为 $1000$。 若存在方案,输出 `YES` 及任意一个边权和最小的方案;否则输出 `NO`。

题目描述

You must have heard all about the Foolland on your Geography lessons. Specifically, you must know that federal structure of this country has been the same for many centuries. The country consists of $ n $ cities, some pairs of cities are connected by bidirectional roads, each road is described by its length $ l_{i} $ . The fools lived in their land joyfully, but a recent revolution changed the king. Now the king is Vasily the Bear. Vasily divided the country cities into regions, so that any two cities of the same region have a path along the roads between them and any two cities of different regions don't have such path. Then Vasily decided to upgrade the road network and construct exactly $ p $ new roads in the country. Constructing a road goes like this: 1. We choose a pair of distinct cities $ u $ , $ v $ that will be connected by a new road (at that, it is possible that there already is a road between these cities). 2. We define the length of the new road: if cities $ u $ , $ v $ belong to distinct regions, then the length is calculated as $ min(10^{9},S+1) $ ( $ S $ — the total length of all roads that exist in the linked regions), otherwise we assume that the length equals $ 1000 $ . 3. We build a road of the specified length between the chosen cities. If the new road connects two distinct regions, after construction of the road these regions are combined into one new region. Vasily wants the road constructing process to result in the country that consists exactly of $ q $ regions. Your task is to come up with such road constructing plan for Vasily that it meets the requirement and minimizes the total length of the built roads.

输入输出格式

输入格式


The first line contains four integers $ n $ ( $ 1<=n<=10^{5} $ ), $ m $ ( $ 0<=m<=10^{5} $ ), $ p $ ( $ 0<=p<=10^{5} $ ), $ q $ ( $ 1<=q<=n $ ) — the number of cities in the Foolland, the number of existing roads, the number of roads that are planned to construct and the required number of regions. Next $ m $ lines describe the roads that exist by the moment upgrading of the roads begun. Each of these lines contains three integers $ x_{i} $ , $ y_{i} $ , $ l_{i} $ : $ x_{i} $ , $ y_{i} $ — the numbers of the cities connected by this road ( $ 1<=x_{i},y_{i}<=n,x_{i}≠y_{i} $ ), $ l_{i} $ — length of the road ( $ 1<=l_{i}<=10^{9}) $ . Note that one pair of cities can be connected with multiple roads.

输出格式


If constructing the roads in the required way is impossible, print a single string "NO" (without the quotes). Otherwise, in the first line print word "YES" (without the quotes), and in the next $ p $ lines print the road construction plan. Each line of the plan must consist of two distinct integers, giving the numbers of the cities connected by a road. The road must occur in the plan in the order they need to be constructed. If there are multiple optimal solutions, you can print any of them.

输入输出样例

输入样例 #1

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

输出样例 #1

YES
9 5
1 9

输入样例 #2

2 0 1 2

输出样例 #2

NO

输入样例 #3

2 0 0 2

输出样例 #3

YES

说明

Consider the first sample. Before the reform the Foolland consists of four regions. The first region includes cities $ 1 $ , $ 2 $ , $ 3 $ , the second region has cities $ 4 $ and $ 6 $ , the third region has cities $ 5 $ , $ 7 $ , $ 8 $ , the fourth region has city $ 9 $ . The total length of the roads in these cities is $ 11 $ , $ 20 $ , $ 5 $ and $ 0 $ , correspondingly. According to the plan, we first build the road of length $ 6 $ between cities $ 5 $ and $ 9 $ , then the road of length $ 23 $ between cities $ 1 $ and $ 9 $ . Thus, the total length of the built roads equals $ 29 $ .