605B. Lazy Student(codeforces Round 335)
2 seconds
256 megabytes
standard input
standard output
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.
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.
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.
4 5
2 1
3 1
4 0
1 1
5 0
2 4
1 4
3 4
3 1
3 2
3 3
1 0
2 1
3 1
-1
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=100000+100;
struct node
{
int x,y,id,v,sign;
}a[maxn];
int cnt[maxn];
bool cmp1(node x1,node y1)
{
if(x1.v==y1.v)
return x1.sign>y1.sign;
return x1.v<y1.v;
}
bool cmp2(node x1,node y1)
{
return x1.id<y1.id;
}
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
for(int i=0; i<m; i++)
{
scanf("%d%d",&a[i].v,&a[i].sign);
a[i].id=i;
}
sort(a,a+m,cmp1);
int flag=1;
if(a[0].sign==0)
{
printf("-1\n");
}
else
{
int now=2;//当前要处理的顶点
int cur=3;//不是最小生成树加入到的顶点
cnt[cur]=1;
for(int i=0; i<m; i++)
{
if(a[i].sign)
{
a[i].x=now;
a[i].y=now-1;
now++;
//cur=1;
}
else
{
if(cur<=now-1)
{
a[i].x=cur;
a[i].y=cnt[cur];
// cout<<cur<<" "<<cnt[cur]<<endl;
if(cnt[cur]>=cur-2)//cur与cur+1的边是给最小生成树的
{
cur++;
cnt[cur]=1;
}
else
{
cnt[cur]++;
}
}
else
{
flag=0;
break;
}
}
}
if(flag)
{
sort(a,a+m,cmp2);
for(int i=0; i<m; i++)
{
printf("%d %d\n",a[i].x,a[i].y);
}
}
else
printf("-1\n");
} }
return 0;
}
605B. Lazy Student(codeforces Round 335)的更多相关文章
- Codeforces Round #335 (Div. 2) D. Lazy Student 构造
D. Lazy Student Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/606/probl ...
- Codeforces Round #335 (Div. 2) D. Lazy Student 贪心+构造
题目链接: http://codeforces.com/contest/606/problem/D D. Lazy Student time limit per test2 secondsmemory ...
- Codeforces Round #335 (Div. 2) D. Lazy Student 贪心
D. Lazy Student Student Vladislav came to his programming exam completely unprepared as usual. He ...
- CodeForces 605B Lazy Student
构造.对边的权值排序,权值一样的话,在MST中的边排到前面,否则权值小的排在前面. 然后边一条一条扫过去,如果是1 ,那么连一个点到集合中,如果是0,集合内的边相连. #include<cstd ...
- Codeforces Round #335 Sorting Railway Cars 动态规划
题目链接: http://www.codeforces.com/contest/606/problem/C 一道dp问题,我们可以考虑什么情况下移动,才能移动最少.很明显,除去需要移动的车,剩下的车, ...
- Codeforces Round #335 (Div. 2) B. Testing Robots 水题
B. Testing Robots Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.codeforces.com/contest/606 ...
- Codeforces Round #335 (Div. 1) C. Freelancer's Dreams 计算几何
C. Freelancer's Dreams Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.codeforces.com/contes ...
- Codeforces Round #335 (Div. 2) C. Sorting Railway Cars 动态规划
C. Sorting Railway Cars Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.codeforces.com/conte ...
- Codeforces Round #335 (Div. 2) A. Magic Spheres 水题
A. Magic Spheres Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.codeforces.com/contest/606/ ...
随机推荐
- 新人浅谈__(数据库的设计__数据库模型图,数据库E-R图,三大范式)
>>>> 为什么需要规范的数据库设计 在实际的项目开发中,如果系统的数据存储量较大,设计的表比较多,表和表之间的关系比较复杂,就需要首先考虑规范的数据库设计,然后进行创建库, ...
- crontab的使用
基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1-59 每分钟用*或者 */1表示 第2列表示小时1-23(0表示0点) 第3列表示日期1-31 第4列表示 ...
- Xml的读取
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAp ...
- 元素属性的添加删除(原生js)
添加属性 odiv.setAttribute("title","hello div!"); odiv.setAttribute("class" ...
- js基础---object对象
//**********************************复杂JSON举例**************************************** var Jsondata={d ...
- 如何用putty链接服务器端,并安装wdcp
首先把自己阿里云的磁盘格式化然后重启 自己下载一个PuTTY 打开后输入自己的Ip地址端口号默认是22 会跳出一个yes 跟no界面,点击yes 会进入一个类似cmd界面 直接输入root,然后会提示 ...
- Hive扩展功能(八)--表的索引
软件环境: linux系统: CentOS6.7 Hadoop版本: 2.6.5 zookeeper版本: 3.4.8 主机配置: 一共m1, m2, m3这三部机, 每部主机的用户名都为centos ...
- JS——undefined、null
1.undefined == false //返回false 2.null == false //返回false 3.undefined == null //返回true 4.und ...
- CSS平滑过渡动画:transition
<html> <head> <link href="http://cdn.bootcss.com/twitter-bootstrap/3.0.2/css/boo ...
- registerDataSetObserver:浅析Andorid ListView和Adapte
最近由于遇到将内容分部绑定到ListView里的需求,追踪源码之后对ListView和Adapter有了点肤浅的认识,在此与大家分享. 这里用到了观察者模式,在ListView的setAdapter里 ...