zoukankan      html  css  js  c++  java
  • Codeforces Round #335 (Div. 2) D. Lazy Student 贪心

    D. Lazy Student
     

    Student Vladislav came to his programming exam completely unprepared as usual. He got a question about some strange algorithm on a graph — something that will definitely never be useful in real life. He asked a girl sitting next to him to lend him some cheat papers for this questions and found there the following definition:

    The minimum spanning tree T of graph G is such a tree that it contains all the vertices of the original graph G, and the sum of the weights of its edges is the minimum possible among all such trees.

    Vladislav drew a graph with n vertices and m edges containing no loops and multiple edges. He found one of its minimum spanning trees and then wrote for each edge its weight and whether it is included in the found tree or not. Unfortunately, the piece of paper where the graph was painted is gone and the teacher is getting very angry and demands to see the original graph. Help Vladislav come up with a graph so that the information about the minimum spanning tree remains correct.

    Input

    The first line of the input contains two integers n and m () — the number of vertices and the number of edges in the graph.

    Each of the next m lines describes an edge of the graph and consists of two integers aj and bj (1 ≤ aj ≤ 109, bj = {0, 1}). The first of these numbers is the weight of the edge and the second number is equal to 1 if this edge was included in the minimum spanning tree found by Vladislav, or 0 if it was not.

    It is guaranteed that exactly n - 1 number {bj} are equal to one and exactly m - n + 1 of them are equal to zero.

    Output

    If Vladislav has made a mistake and such graph doesn't exist, print  - 1.

    Otherwise print m lines. On the j-th line print a pair of vertices (uj, vj) (1 ≤ uj, vj ≤ n, uj ≠ vj), that should be connected by the j-th edge. The edges are numbered in the same order as in the input. The graph, determined by these edges, must be connected, contain no loops or multiple edges and its edges with bj = 1 must define the minimum spanning tree. In case there are multiple possible solutions, print any of them.

    Sample test(s)
    input
    4 5
    2 1
    3 1
    4 0
    1 1
    5 0
    output
    2 4
    1 4
    3 4
    3 1
    3 2
    input
    3 3
    1 0
    2 1
    3 1
    output
    -1

     题意:

      给你n 个点,m条边的树,题目作出一个最小生成树,,  告诉你哪些是最小生成树的边及其权值,让你构造一颗树 满足条件

    题解:

      贪心,我们在按照权值从小到大排序,让最小生成树的边设定为1-x就可以了

      其他非最小生成树边 就是x-y了,以y递增为尾,找齐小于y的x就是最佳

    //meek
    ///#include<bits/stdc++.h>
    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <string>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    #include <map>
    #include <set>
    #include <stack>
    #include <sstream>
    #include <vector>
    using namespace std ;
    typedef long long ll;
    #define mem(a) memset(a,0,sizeof(a))
    #define pb push_back
    #define fi first
    #define se second
    #define MP make_pair
    inline ll read()
    {
        ll x=0,f=1;
        char ch=getchar();
        while(ch<'0'||ch>'9')
        {
            if(ch=='-')f=-1;
            ch=getchar();
        }
        while(ch>='0'&&ch<='9')
        {
            x=x*10+ch-'0';
            ch=getchar();
        }
        return x*f;
    }
    //****************************************
    
    const int N=250000+100;
    const ll inf = 1ll<<61;
    const int mod= 1000000007;
    
    struct ss {
       int w,d,id;
    }a[N];
    int cmp(ss s1,ss s2) {
        if(s1.w==s2.w) return s1.d>s2.d;
        return s1.w<s2.w;
    }
    int n,m,vis[N];
    vector< pair<int,pair<int ,int > > > ans;
    int main () {
            int flag=0;
        scanf("%d%d",&n,&m);
        for(int i=1; i<=m; i++) {
            scanf("%d%d",&a[i].w,&a[i].d);
            a[i].id=i;
        }
        sort(a+1,a+m+1,cmp);
        int aim=n-1;
        int ans1=1,ans2=2,l=2,r=2;
        vis[1]=vis[2]=1;
        for(int i=1;i<=m;i++) {
            if(a[i].d==0) {
              if(!vis[r]) {
                flag=1;
               }
               if(l==r) {
                r++;
                l=2;
               }if(!vis[r]) {
                flag=1;
               }
               ans.pb(MP(a[i].id,MP(l,r)));
               l++;
            }
            else {
                    ans.pb(MP(a[i].id,MP(ans1,ans2)));
                    vis[ans2]=1;
                    ans2+=1;
            }
        }
        if(flag) {
            cout<<-1<<endl;
            return 0;
        }
        sort(ans.begin(),ans.end());
        for(int i=0;i<ans.size();i++) {
            cout<<ans[i].se.fi<<" "<<ans[i].se.se<<endl;
        }
        return 0;
    }
    代码
  • 相关阅读:
    最全的项目
    最全的liunx系统修改root用户密码
    最全docker安装步骤
    最全的ideal 常 用 的 快 捷
    最全的ideal 常用的快捷
    ftp路径
    站点路径
    sublime text3 切换中文方法
    UI设计: PS 快捷键 Ctrl+Shift+alt+T,旋转复制
    SQL中表与表的简单关系
  • 原文地址:https://www.cnblogs.com/zxhl/p/5039686.html
Copyright © 2011-2022 走看看