304811: CF916C. Jamie and Interesting Graph
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Jamie and Interesting Graph
题意翻译
给定 $n$ 个点 $m$ 条边,满足 $2 \le n \le 10^5 $,$n-1\le m \le \min(\frac{n(n-1)}{2},10^5)$。 要求构造一张无向图,满足以下条件: - 包含 $n$ 个点,$m$ 条边。 - 边权范围在 $[1,10^9]$ 内。 - $1$ 到 $n$ 的最短路径长度是质数。 - 最小生成树的边权和是质数,且不超过 $10^{14}$。 - 没有重边和自环。 特别的,在输出图之前,在第一行输出最短路径的长度和最小生成树的大小。题目描述
Jamie has recently found undirected weighted graphs with the following properties very interesting: - The graph is connected and contains exactly $ n $ vertices and $ m $ edges. - All edge weights are integers and are in range $ [1,10^{9}] $ inclusive. - The length of shortest path from $ 1 $ to $ n $ is a prime number. - The sum of edges' weights in the minimum spanning tree (MST) of the graph is a prime number. - The graph contains no loops or multi-edges. 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 $ ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF916C/2d5925c368d31be87894bfaeb81a5671f57414c2.png) — the required number of vertices and edges.
输出格式
In the first line output 2 integers $ sp $ , $ mstw $ $ (1<=sp,mstw<=10^{14}) $ — 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<=10^{9}) $ describing the edge connecting $ u $ and $ v $ and having weight $ w $ .
输入输出样例
输入样例 #1
4 4
输出样例 #1
7 7
1 2 3
2 3 2
3 4 2
2 4 4
输入样例 #2
5 4
输出样例 #2
7 13
1 2 2
1 3 4
1 4 3
4 5 4