博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
构造 素数
阅读量:6405 次
发布时间:2019-06-23

本文共 3336 字,大约阅读时间需要 11 分钟。

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!

Input

First line of input contains 2 integers n, m  — the required number of vertices and edges.

Output

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.

Example
Input
4 4
Output
7 7 1 2 3 2 3 2 3 4 2 2 4 4
Input
5 4
Output
7 13 1 2 2 1 3 4 1 4 3 4 5 4
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 + 11 ≤ i < k and the sum of weight is minimized where w(i, j) is the edge weight between i and j. ()

A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. ()

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. ()

 

题意 : 让你构造一个图,保证图的MST是一个素数,并且1 到 n的路径也是一个素数,输出图的全部边

题目分析 : 两种构造方法,一是从1到n先构成一条链,让边上的总和是一个素数且等于 1e5+3, 可以让1到n -2 条边全是 1,让最后一条边是素数减去前面的总和,然后再有边的话,我们就给它赋值一个很大的数即可

代码示例 :

const int prime = 1e5+3;const int maxn = 0x3f3f3f3f;#define ll long longint main() {    int n, m;        cin >> n >> m;    printf("%d %d\n", prime, prime);    for(int i = 1; i < n-1; i++){        printf("%d %d %d\n", i, i+1, 1);    }    printf("%d %d %d\n", n-1, n, prime-(n-2));        int cnt = n-1, sign = 0;    for(int i = 1; i < n; i++){        for(int j = i+2; j <= n; j++){            if (cnt == m) {sign = 1; break;}            printf("%d %d %d\n", i, j, prime*2);            cnt++;        }        if (sign) break;    }     return 0;}

 

第二种构造方法 : 由 1 这个点去向其余所有的点引边,并别将 1 到 n的路径赋值为 2 ,在有边的话将其余的边赋值为很大的数即可

代码示例 :

const int prime = 1e5+3;const int maxn = 0x3f3f3f3f;#define ll long longint main() {    int n, m;        cin >> n >> m;    if (n == 2) printf("%d %d\n", 2, 2);    else printf("%d %d\n", 2, prime);    for(int i = 2; i < n-1; i++){        printf("%d %d %d\n", 1, i, 1);    }    if (m > 1)        printf("%d %d %d\n", 1, n-1, prime-2-(n-3));    printf("%d %d %d\n", 1, n, 2);    int cnt = n-1, sign = 0;    for(int i = 2; i < n; i++){        for(int j = i+1; j <= n; j++){            if (cnt == m){sign = 1; break;}            printf("%d %d %d\n", i, j, prime*2);            cnt++;        }        if (sign) break;    }    return 0;}

 

转载于:https://www.cnblogs.com/ccut-ry/p/8468628.html

你可能感兴趣的文章
HttpClient的用法
查看>>
c# 如何中List<object>中去掉object对象中的重复列数据?
查看>>
8086 汇编指令速查手册
查看>>
BOM和DOM
查看>>
java8_api_日期时间
查看>>
数据存储-传输-分析
查看>>
rsync
查看>>
【以前的空间】网络流合集
查看>>
IT运维人员追女友必备神器之运维开发实战程序案例
查看>>
我的超级“盒子”
查看>>
体验VMware View HTML Access
查看>>
走过13,展望14----希望是个好东西
查看>>
iptables官方手册整理
查看>>
Mysql 分区介绍(五) —— LIST COLUMNS分区
查看>>
Windows Server 2016-查询FSMO角色信息的三种方法
查看>>
恭喜小强系列高级测试课程获得国家版权认证保护
查看>>
solr学习之(六)_如何在web项目中引用velocity模板引擎
查看>>
RHCE认证培训+考试七天实录(二)
查看>>
Zabbix 监控Nginx连接的状态
查看>>
使用PhpStorm或WebStorm作为electron IDE
查看>>