Jamie has recently found undirected weighted graphs with the following properties very interesting:
If you are not familiar with some terms from the statement you can find definitions of them in notes section.
Help Jamie construct any graph with given number of vertices and edges that is interesting!
First line of input contains 2 integers n, m — the required number of vertices and edges.
In the first line output 2 integers sp, mstw (1 ≤ sp, mstw ≤ 1014) — the length of the shortest path and the sum of edges' weights in the minimum spanning tree.
In the next m lines output the edges of the graph. In each line output 3 integers u, v, w (1 ≤ u, v ≤ n, 1 ≤ w ≤ 109) describing the edge connecting u and v and having weight w.
4 4
7 7 1 2 3 2 3 2 3 4 2 2 4 4
5 4
7 13 1 2 2 1 3 4 1 4 3 4 5 4
The graph of sample 1:Shortest path sequence: {1, 2, 3, 4}. MST edges are marked with an asterisk (*).
Definition of terms used in the problem statement:
A shortest path in an undirected graph is a sequence of vertices (v1, v2, ... , vk) such that vi is adjacent to vi + 1 1 ≤ i < k and the sum of weight is minimized where w(i, j) is the edge weight between i and j. (https://en.wikipedia.org/wiki/Shortest_path_problem)
A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. (https://en.wikipedia.org/wiki/Prime_number)
A minimum spanning tree (MST) is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight. (https://en.wikipedia.org/wiki/Minimum_spanning_tree)
https://en.wikipedia.org/wiki/Multiple_edges
题意:构造出一张n个点m条边的有向图,并且不存在环和重边,1到n的最短路为质数,最小生成树也为质数
解题思路:先将1连向其他所有点,除了1~n-1这条边,其他边的权值都为2,算出大于等于2*(n-1)的最小质数,然后确定1~n-1这条边的权值,若边数不够,则再加上其他边权为1000000000的边即可
#include
#include
#include
#include
#include
#include