题目链接:https://ac.nowcoder.com/acm/contest/3566/E

思路:tarjan缩点,桥重建图,dfs跑树的直径。

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <vector>
  4. #include <algorithm>
  5. using namespace std;
  6. typedef long long ll;
  7.  
  8. const int N = (int)2e5+,mod = (int)1e9+;
  9. struct node{
  10. int to,nxt;
  11. }e[N<<];
  12. vector<pair<int,int> > cut;
  13. int n,m,u,v,tot,tim,top,scc_num,bridge;
  14. int head[N],dfn[N],low[N],s[N],scc_no[N],d[N];
  15. bool vis[N];
  16.  
  17. ll quick(ll a,ll b){
  18. ll ans=;
  19. a=a%mod;
  20. while(b!=){
  21. if(b&) ans=(ans*a)%mod;
  22. b>>=;
  23. a=(a*a)%mod;
  24. }
  25. return ans;
  26. }
  27.  
  28. inline void add(int u,int v){
  29. e[tot].to = v; e[tot].nxt = head[u]; head[u] = tot++;
  30. e[tot].to = u; e[tot].nxt = head[v]; head[v] = tot++;
  31. }
  32.  
  33. void tarjan(int now,int pre){
  34. dfn[now] = low[now] = ++tim;
  35. s[top++] = now;
  36. int pre_cnt = ;
  37. for(int o = head[now]; ~o; o = e[o].nxt){
  38. int to = e[o].to;
  39. if(to == pre && pre_cnt == ){ pre_cnt = ; continue; }
  40. if(!dfn[to]){
  41. tarjan(to,now);
  42. low[now] = min(low[now],low[to]);
  43. if(dfn[now] < low[to]) cut.push_back(make_pair(now,to));
  44. }else low[now] = min(low[now],dfn[to]);
  45. }
  46.  
  47. if(dfn[now] == low[now]){
  48. ++scc_num;
  49. int tmp;
  50. do{
  51. tmp = s[--top];
  52. scc_no[tmp] = scc_num;
  53. }while(now != tmp);
  54. }
  55. }
  56.  
  57. void dfs(int now,int pre){
  58. vis[now] = ;
  59. d[now] = d[pre]+;
  60. for(int o = head[now]; ~o; o = e[o].nxt){
  61. int to = e[o].to;
  62. if(vis[to]) continue;
  63. dfs(to,now);
  64. }
  65. }
  66.  
  67. void rebuild(){
  68. for(int i = ; i <= scc_num; ++i) head[i] = -; tot = ;
  69. bridge = cut.size();
  70. for(int i = ; i < bridge; ++i){
  71. // printf("%d %d\n",scc_no[cut[i].first],scc_no[cut[i].second]);
  72. add(scc_no[cut[i].first],scc_no[cut[i].second]);
  73. }
  74. /*
  75. for(int i = 1; i <= scc_num; ++i){
  76. printf("u = %d\t",i);
  77. for(int o = head[i]; ~o; o = e[o].nxt) printf("%d ",e[o].to);
  78. cout << endl;
  79. }*/
  80. }
  81.  
  82. void show_info(){
  83. for(int i = ; i <= n; ++i){
  84. printf("loc = %d scc_no = %d\n",i,scc_no[i]);
  85. }
  86. }
  87.  
  88. void solve(){
  89.  
  90. for(int i = ; i <= n; ++i) head[i] = -; tot = ;
  91. for(int i = ; i <= m; ++i){
  92. scanf("%d%d",&u,&v);
  93. add(u,v);
  94. }
  95. tarjan(,);
  96. rebuild();
  97. int s = ;
  98. for(int i = ; i <= scc_num; ++i){
  99. d[i] = -; vis[i] = ;
  100. }
  101. dfs(s,);
  102. for(int i = ; i <= scc_num; ++i){
  103. if(d[s] < d[i]) s = i;
  104. }
  105. for(int i = ; i <= scc_num; ++i){
  106. d[i] = -; vis[i] = ;
  107. }
  108. dfs(s,);
  109. int max_len = ;
  110. for(int i = ; i <= scc_num; ++i) max_len = max(max_len,d[i]);
  111. // printf("max_len = %d\n",max_len);
  112. //printf("%lf\n",(double)(bridge-max_len)/(m+1));
  113. printf("%lld\n",1ll*(bridge-max_len)*quick(m+,mod-)%mod);
  114. }
  115.  
  116. int main(){
  117.  
  118. scanf("%d%d",&n,&m);
  119. solve();
  120. //show_info();
  121.  
  122. return ;
  123. }

牛客练习赛56 E 小雀和他的王国的更多相关文章

  1. 牛客练习赛56 B 小琛和他的学校

    题目链接:https://ac.nowcoder.com/acm/contest/3566/B 思路:一条路可把图分为左右两部分. l_ci, l_peo, r_ci, r_peo, w 分别为左边城 ...

  2. 牛客练习赛48 C 小w的糖果 (数学,多项式,差分)

    牛客练习赛48 C 小w的糖果 (数学,多项式) 链接:https://ac.nowcoder.com/acm/contest/923/C来源:牛客网 题目描述 小w和他的两位队友teito.toki ...

  3. 牛客练习赛48 A· 小w的a+b问题 (贪心,构造,二进制)

    牛客练习赛48 A· 小w的a+b问题 链接:https://ac.nowcoder.com/acm/contest/923/A来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C ...

  4. 牛客练习赛44 C 小y的质数 (数论,容斥定理)

    链接:https://ac.nowcoder.com/acm/contest/634/C 来源:牛客网 题目描述 给出一个区间[L,R],求出[L,R]中孪生质数有多少对. 由于这是一个区间筛质数的模 ...

  5. 牛客练习赛44 B 小y的线段 (思维)

    链接:https://ac.nowcoder.com/acm/contest/634/B 来源:牛客网 题目描述 给出n条线段,第i条线段的长度为a_ia i ​ ,每次可以从第i条线段的j位置跳到第 ...

  6. 牛客练习赛44 A 小y的序列 (模拟,细节)

    链接:https://ac.nowcoder.com/acm/contest/634/A 来源:牛客网 小y的序列 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语 ...

  7. 牛客练习赛48 D 小w的基站网络

    链接:https://ac.nowcoder.com/acm/contest/923/D来源:牛客网 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 262144K,其他语言52428 ...

  8. 牛客练习赛40 A 小D的剧场 (思维dp)

    链接:https://ac.nowcoder.com/acm/contest/369/A 题目描述 若你摘得小的星星 你将得到小的幸福  若你摘得大的星星 你将得到大的财富  若两者都能摘得 你将得到 ...

  9. 牛客练习赛40 C 小A与欧拉路(树的直径)

    链接:https://ac.nowcoder.com/acm/contest/369/C 题目描述 小A给你了一棵树,对于这棵树上的每一条边,你都可以将它复制任意(可以为0)次(即在这条边连接的两个点 ...

随机推荐

  1. 9. Palindrome Number QuestionEditorial Solution

    Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. S ...

  2. 2018天梯赛、蓝桥杯、(CCPC省赛、邀请赛、ICPC邀请赛)校内选拔赛反思总结!

    才四月份,上半年的比赛就告一段落了.. 天梯赛混子,三十个人分最低,把队友拖到了国三,蓝桥杯省二滚粗,止步京城,旅游选拔赛成功选为替补二队,啊! 不过既然已经过去,我们说些乐观的一面,积累了大赛经验是 ...

  3. Go语言实现:【剑指offer】链表中环的入口结点

    ​该题目来源于牛客网<剑指offer>专题. 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null. Go语言实现: /** * Definition for sing ...

  4. python学习(10)字典学习,写一个三级菜单程序

    学习了字典的应用.按老师的要求写一个三级菜单程序. 三级菜单程序需求如下: 1.深圳市的区--街道--社区---小区4级 2.建立一个字典,把各级区域都装进字典里 3.用户可以从1级进入2级再进入3级 ...

  5. BeautifulSoup入门

    BeautifulSoup库入门 BeautifulSoup库的理解 BeautifulSoup库是解析.遍历.维护”标签树”的功能库 示例代码: from bs4 import BeautifulS ...

  6. java 获取两个时间之前所有的日期

    正序(2017-01-01 ~2019-xxxxx) package com.founder.util; import java.text.SimpleDateFormat; import java. ...

  7. 见异思迁:K8s 部署 Nginx Ingress Controller 之 kubernetes/ingress-nginx

    前天才发现,区区一个 nginx ingress controller 竟然2个不同的实现.一个叫 kubernetes/ingress-nginx ,是由 kubernetes 社区维护的,对应的容 ...

  8. centos7利用系统镜像修复grub

    1 故障描述 由于错误操作,导致grub配置文件失效,系统开机后一直卡在下面的画面. 2 解决办法 这时候,就要利用系统镜像光盘,进入修复模式,然后按下面图示操作 进入镜像的shell环境,如下图所示 ...

  9. jsplumb 常用事件

    1. jsPlumb.getAllConnections() 获取所有连接线2. jsPlumb.deleteEveryConnection(); 清空所有连接线3. jsPlumb.deleteCo ...

  10. 快速筛出topK的快速选择算法和BFPRT优化

    本文始发于个人公众号:TechFlow,原创不易,求个关注 在之前Python系列当中,我们介绍了heapq这个库的用法,它可以在\(O(nlogn)\)的时间里筛选出前K大或者前K小的元素.今天我们 ...