zoukankan      html  css  js  c++  java
  • 构造 素数

    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 + 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

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

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

    代码示例 :

    const int prime = 1e5+3;
    const int maxn = 0x3f3f3f3f;
    #define ll long long
    
    int main() {
        int n, m;
        
        cin >> n >> m;
        printf("%d %d
    ", prime, prime);
        for(int i = 1; i < n-1; i++){
            printf("%d %d %d
    ", i, i+1, 1);
        }
        printf("%d %d %d
    ", 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
    ", 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 long
    
    int main() {
        int n, m;
        
        cin >> n >> m;
        if (n == 2) printf("%d %d
    ", 2, 2);
        else printf("%d %d
    ", 2, prime);
        for(int i = 2; i < n-1; i++){
            printf("%d %d %d
    ", 1, i, 1);
        }
        if (m > 1)
            printf("%d %d %d
    ", 1, n-1, prime-2-(n-3));
        printf("%d %d %d
    ", 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
    ", i, j, prime*2);
                cnt++;
            }
            if (sign) break;
        }
        return 0;
    }
    
    东北日出西边雨 道是无情却有情
  • 相关阅读:
    vb.net 与 c# 运算符区别
    获取任务栏坐标
    获取系统任务栏高度
    【HDOJ5555】Immortality of Frog(状压DP)
    【HDOJ5559】Frog and String(构造)
    【HDOJ5558】Alice's Classified Message(后缀数组)
    【Hihocoder1634】Puzzle Game(DP)
    【HDOJ5981】Guess the number(DP)
    【HDOJ5975】Aninteresting game(BIT原理)
    【HDOJ5973】Game of Taking Stones(Java,威佐夫博弈)
  • 原文地址:https://www.cnblogs.com/ccut-ry/p/8468628.html
Copyright © 2011-2022 走看看