5109.Jamie and Interesting Graph

传统题 时间 2000 ms 内存 256 MiB 尝试 0 已通过 0 标签

Jamie and Interesting Graph

CF916C · Jamie and Interesting Graph

  • 难度:1600
  • 标签:constructive algorithms、graphs、shortest paths
  • 链接:https://codeforces.com/problemset/problem/916/C
  • 时间限制:2 seconds 内存限制:256 megabytes
  • 出现位置:Day14-阶段模拟2-图论DSU卷

中文题意

以下为官方英文题意(课堂讲解时请要求学生能用自己的话复述条件与目标)。

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, 109] 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!

Note(官方): 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

输入格式(中文)

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.

样例

样例 1

输入:

4 4

输出:

7 7
1 2 3
2 3 2
3 4 2
2 4 4

样例 2

输入:

5 4

输出:

7 13
1 2 2
1 3 4
1 4 3
4 5 4

在线编程 IDE

建议全屏模式获得最佳体验