[codeforces] C. Jamie and Interesting Graph

题目:

C. Jamie and Interesting Graph
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 nm  — the required number of vertices and edges.

Output

In the first line output 2 integers spmstw (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 uvw (1 ≤ u, v ≤ n, 1 ≤ w ≤ 109) describing the edge connecting u and v and having weight w.

Examples
input
Copy
4 4
output
Copy
7 7
1 2 3
2 3 2
3 4 2
2 4 4
input
Copy
5 4
output
Copy
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:

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)

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)

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


代码:

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <string>
#include <iostream>
#include <stack>
#include <queue>
#include <vector>
#include <algorithm>
#define mem(a,b) memset(a,b,sizeof(a))
#define inf 0x3f3f3f3f
using namespace std;
const int N=3e5+9;
int prime[N];
bool is_prime[N];
int tot=0;
void get_prime()
{
    mem(is_prime,true);
    is_prime[0]=is_prime[1]=false;
    for(int i=2; i<N; i++)
    {
        if(is_prime[i])
        {
            prime[tot++]=i;
            for(int j=2*i; j<=N; j+=i)
                is_prime[j]=false;
        }
    }
}
int main()
{
    get_prime();
    int n,m;
    scanf("%d%d",&n,&m);
    int num=prime[lower_bound(prime,prime+tot,n-1)-prime];
    int cha=num-n+1;
    int t=m-n+1;
    printf("%d %d\n",num,num);
    for(int i=1; i<=n-1; i++)
    {
        if(i==1)
            printf("%d %d %d\n",i,i+1,cha+1);
        else
            printf("%d %d %d\n",i,i+1,1);
    }
    for(int i=1; i<=n-1; i++)
    {
        for(int j=i+2; j<=n; j++)
        {
            if(t==0) return 0;
            t--;
            printf("%d %d %d\n",i,j,10000000);
        }
    }
    return 0;
}

结果:


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值