E. Andrew and Taxi
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Andrew prefers taxi to other means of transport, but recently most taxi drivers have been acting inappropriately. In order to earn more money, taxi drivers started to drive in circles. Roads in Andrew's city are one-way, and people are not necessary able to travel from one part to another, but it pales in comparison to insidious taxi drivers.

The mayor of the city decided to change the direction of certain roads so that the taxi drivers wouldn't be able to increase the cost of the trip endlessly. More formally, if the taxi driver is on a certain crossroads, they wouldn't be able to reach it again if he performs a nonzero trip.

Traffic controllers are needed in order to change the direction the road goes. For every road it is known how many traffic controllers are needed to change the direction of the road to the opposite one. It is allowed to change the directions of roads one by one, meaning that each traffic controller can participate in reversing two or more roads.

You need to calculate the minimum number of traffic controllers that you need to hire to perform the task and the list of the roads that need to be reversed.

Input

The first line contains two integers nn and mm (2≤n≤1000002≤n≤100000, 1≤m≤1000001≤m≤100000) — the number of crossroads and the number of roads in the city, respectively.

Each of the following mm lines contain three integers uiui, vivi and cici (1≤ui,vi≤n1≤ui,vi≤n, 1≤ci≤1091≤ci≤109, ui≠viui≠vi) — the crossroads the road starts at, the crossroads the road ends at and the number of traffic controllers required to reverse this road.

Output

In the first line output two integers the minimal amount of traffic controllers required to complete the task and amount of roads kk which should be reversed. kk should not be minimized.

In the next line output kk integers separated by spaces — numbers of roads, the directions of which should be reversed. The roads are numerated from 11 in the order they are written in the input. If there are many solutions, print any of them.

Examples
input

Copy
  1. 5 6
  2. 2 1 1
  3. 5 2 6
  4. 2 3 2
  5. 3 4 3
  6. 4 5 5
  7. 1 5 4
output

Copy
  1. 2 2
  2. 1 3
input

Copy
  1. 5 7
  2. 2 1 5
  3. 3 2 3
  4. 1 3 3
  5. 2 4 1
  6. 4 3 5
  7. 5 4 1
  8. 1 5 3
output

Copy
  1. 3 3
  2. 3 4 7
Note

There are two simple cycles in the first example: 1→5→2→11→5→2→1 and 2→3→4→5→22→3→4→5→2. One traffic controller can only reverse the road 2→12→1 and he can't destroy the second cycle by himself. Two traffic controllers can reverse roads 2→12→1 and 2→32→3 which would satisfy the condition.

In the second example one traffic controller can't destroy the cycle 1→3→2→11→3→2→1. With the help of three controllers we can, for example, reverse roads 1→31→3 ,2→42→4, 1→51→5.

【题意】

给定一张有向图,每条边有边权。你可以花费边权的代价反转一条边,使得原图中没有环。

1、输出最小化的反转的边权的最大值和要反转几条边k(k不必为最小数量)

2、输出你要反转的k条边的序号。(在满足最小化最大值的前提下,任何一种方案皆可)

【分析】

转化为有些边可以翻转,有些边不可以翻转,使得图中没有环。由此二分答案

我们把不能反向的边拿出来,然后跑拓扑排序判环,如果有环则无解,不然一定有一种方案,加入那些可以改变方向的边而不产生环。

新加的边方向:拓扑序小的连向拓扑序大的

Attached official solution.

Suppose we have k traffic controllers. They can turn all edges whose weight is less than or equal to k. Then let's remove all these edges from the graph, make a topological sorting of the remaining graph, and orient the other edges in the order of topological sorting. If there are cycles left in the graph after removing the edges, then we cannot get rid of them, having k traffic controllers. Otherwise, by adding edges we will not add new loops. The parameter k can be iterated through a binary search. Also in binary search, you can go through not all possible values of k, but only the values that are on the edges.

Complexity — O((n+m)logC) or O((n+m)logm).

【代码】

  1. #include<stack>
  2. #include<queue>
  3. #include<cstdio>
  4. #include<cstring>
  5. #include<iostream>
  6. #define debug(x) cerr<<#x<<" "<<x<<'\n';
  7. using namespace std;
  8. inline int read(){
  9. register char ch=getchar();register int x=0;
  10. for(;ch<'0'||ch>'9';ch=getchar());
  11. for(;ch>='0'&&ch<='9';ch=getchar()) x=(x<<3)+(x<<1)+ch-'0';
  12. return x;
  13. }
  14. const int N=1e5+5;
  15. int n,m,cct,in[N],dfn[N],rec[N];
  16. struct data{
  17. int x,y,z;
  18. data(int _x=0,int _y=0,int _z=0){
  19. x=_x;y=_y;z=_z;
  20. }
  21. }b[N];
  22. struct edge{int v,next;}e[N];int tot,head[N];
  23. inline void add(int x,int y){
  24. e[++tot].v=y;e[tot].next=head[x];head[x]=tot;
  25. }
  26. inline bool topo(){
  27. stack<int>s;int cnt=0;
  28. for(int i=1;i<=n;i++) if(!in[i]) s.push(i),dfn[i]=++cnt;
  29. while(!s.empty()){
  30. int x=s.top();s.pop();
  31. for(int j=head[x];j;j=e[j].next){
  32. int v=e[j].v;
  33. if(!--in[v]) s.push(v),dfn[v]=++cnt;
  34. }
  35. }
  36. return cnt==n;
  37. }
  38. #define m(a) memset(a,0,(sizeof a[0])*(n+1));
  39. inline bool check(int now){
  40. m(in);m(dfn);m(head);tot=0;
  41. for(int i=1;i<=m;i++)
  42. if(b[i].z>now)
  43. add(b[i].x,b[i].y),in[b[i].y]++;
  44. return topo();
  45. }
  46. int main(){
  47. n=read();m=read();
  48. int l=0,r=0,mid,ans=0;
  49. for(int i=1,x,y,z;i<=m;i++) x=read(),y=read(),z=read(),b[i]=data(x,y,z),r=max(r,z);
  50. while(l<=r){
  51. mid=l+r>>1;
  52. if(check(mid)){
  53. ans=mid;
  54. r=mid-1;
  55. }
  56. else{
  57. l=mid+1;
  58. }
  59. }
  60. printf("%d ",ans);
  61. check(ans);
  62. for(int i=1;i<=m;i++){
  63. if(dfn[b[i].x]>dfn[b[i].y]){
  64. rec[++cct]=i;
  65. }
  66. }
  67. printf("%d\n",cct);
  68. for(int i=1;i<=cct;i++) printf("%d ",rec[i]);
  69. return 0;
  70. }
 

CF 1100E Andrew and Taxi(二分答案)的更多相关文章

  1. CF1100E Andrew and Taxi 二分答案+拓扑排序

    \(\color{#0066ff}{ 题目描述 }\) 给定一个有向图,改变其中某些边的方向,它将成为一个有向无环图. 现在求一个改变边方向的方案,使得所选边边权的最大值最小. \(\color{#0 ...

  2. CF 672D Robin Hood(二分答案)

    D. Robin Hood time limit per test 1 second memory limit per test 256 megabytes input standard input ...

  3. CF1100E Andrew and Taxi

    题目地址:CF1100E Andrew and Taxi 二分,每次取到一个 \(mid\) ,只保留长度 \(>mid\) 的边 dfs判环,若有环,说明 \(ans>mid\) ,否则 ...

  4. CF 371C-Hamburgers[二分答案]

    C. Hamburgers time limit per test 1 second memory limit per test 256 megabytes input standard input ...

  5. Cf Round #403 B. The Meeting Place Cannot Be Changed(二分答案)

    The Meeting Place Cannot Be Changed 我发现我最近越来越zz了,md 连调程序都不会了,首先要有想法,之后输出如果和期望的不一样就从输入开始一步一步地调啊,tmd现在 ...

  6. E. Andrew and Taxi(二分+拓扑判环)

    题目链接:http://codeforces.com/contest/1100/problem/E 题目大意:给你n和m,n代表有n个城市,m代表有m条边,然后m行输入三个数,起点,终点,花费.,每一 ...

  7. [CF#592 E] [二分答案] Minimizing Difference

    链接:http://codeforces.com/contest/1244/problem/E 题意: 给定包含$n$个数的数组,你可以执行最多k次操作,使得数组的一个数加1或者减1. 问合理的操作, ...

  8. E - Andrew and Taxi-二分答案-topo判环

    E - Andrew and Taxi 思路 :min max   明显二分答案,二分需要破坏的那些边的中机器人数量最多的那个. check 过程建边时直接忽略掉小于 mid 的边,这样去检验有无环存 ...

  9. CF-1100 E Andrew and Taxi

    CF-1100E Andrew and Taxi https://codeforces.com/contest/1100/problem/E 知识点: 二分 判断图中是否有环 题意: 一个有向图,每边 ...

随机推荐

  1. iPhone: 在 iPhone app 里使用 UIPopoverController

    更新:iOS8 版本已经不可用 为 UIPopoverController 增加类别,如下: //NSObject+UIPopover_Iphone.h #import <Foundation/ ...

  2. zip压缩工具 tar打包 打包并压缩

    6.5 zip压缩工具 6.6 tar打包 6.7 打包并压缩 zip压缩工具 xz,bzip2,gzip都不支持压缩目录 zip可以压缩目录 压缩文件 zip  2.txt.zip  2.txt [ ...

  3. JUnit 3一个例子就懂

    JUnit is a simple framework to write repeatable tests. It is an instance of the xUnit architecture f ...

  4. bash: /usr/bin/npm: No such file or directory

    一个整得很烂了的Ubuntu服务器, 各种问题乱出. npm老是升不到最新版(一直显示1.4),于是我干脆删了, 结果再去装却装不上了, 如果用apt-get install npm安装, 就得到如下 ...

  5. tomcat启动时设定环境变量

    在tomcat的bin目录中修改startup.bat 设置CATALINA_HOME set "CATALINA_HOME=F:\solr\apache-tomcat\apache-tom ...

  6. 【QT学习】QT GUI应用程序的框架,文件分析

    有几个名字,项目名,类名,界面对象名. 1.项目文件 项目名.pro(MyHelloQt.pro) 主要包括项目用到的模块,项目包含哪些源码文件,头文件,窗体文件,生成应用程序的名称. 由QT自动生成 ...

  7. srv.exe蠕虫病毒~

    你是否在电脑使用过程中遇到过这样的问题: 1.文件运行后,同目录下会出现一个原名 srv.exe的文件 2.文件运行后会把浏览器打开 3.电脑上的html文件末尾会增加一大堆东西 完了,电脑中了srv ...

  8. 安装MySQL-python: EnvironmentError:mysql config not found

    1执行 sudo yum install python-devel 2 find / -name mysql_config 在/usr/bin/下发现了这个文件 3. 后修改MySQL-python- ...

  9. Reg命令使用详解 批处理操作注册表必备

    首先要说明:编辑注册表不当可能会严重损坏您的系统.在更改注册表之前,应备份计算机上任何有价值的数据 只有在别无选择的情况下,才直接编辑注册表.注册表编辑器会忽略标准的安全措施,从而使得这些设置会降低性 ...

  10. Track and Follow an Object----4

    原创博文:转载请标明出处(周学伟):http://www.cnblogs.com/zxouxuewei/tag/ ntroduction: 在本示例中,我们将探索包含Kinect摄像头的自主行为. 这 ...