牛客练习赛56 E 小雀和他的王国
题目链接:https://ac.nowcoder.com/acm/contest/3566/E
思路:tarjan缩点,桥重建图,dfs跑树的直径。
- #include <iostream>
- #include <cstdio>
- #include <vector>
- #include <algorithm>
- using namespace std;
- typedef long long ll;
- const int N = (int)2e5+,mod = (int)1e9+;
- struct node{
- int to,nxt;
- }e[N<<];
- vector<pair<int,int> > cut;
- int n,m,u,v,tot,tim,top,scc_num,bridge;
- int head[N],dfn[N],low[N],s[N],scc_no[N],d[N];
- bool vis[N];
- ll quick(ll a,ll b){
- ll ans=;
- a=a%mod;
- while(b!=){
- if(b&) ans=(ans*a)%mod;
- b>>=;
- a=(a*a)%mod;
- }
- return ans;
- }
- inline void add(int u,int v){
- e[tot].to = v; e[tot].nxt = head[u]; head[u] = tot++;
- e[tot].to = u; e[tot].nxt = head[v]; head[v] = tot++;
- }
- void tarjan(int now,int pre){
- dfn[now] = low[now] = ++tim;
- s[top++] = now;
- int pre_cnt = ;
- for(int o = head[now]; ~o; o = e[o].nxt){
- int to = e[o].to;
- if(to == pre && pre_cnt == ){ pre_cnt = ; continue; }
- if(!dfn[to]){
- tarjan(to,now);
- low[now] = min(low[now],low[to]);
- if(dfn[now] < low[to]) cut.push_back(make_pair(now,to));
- }else low[now] = min(low[now],dfn[to]);
- }
- if(dfn[now] == low[now]){
- ++scc_num;
- int tmp;
- do{
- tmp = s[--top];
- scc_no[tmp] = scc_num;
- }while(now != tmp);
- }
- }
- void dfs(int now,int pre){
- vis[now] = ;
- d[now] = d[pre]+;
- for(int o = head[now]; ~o; o = e[o].nxt){
- int to = e[o].to;
- if(vis[to]) continue;
- dfs(to,now);
- }
- }
- void rebuild(){
- for(int i = ; i <= scc_num; ++i) head[i] = -; tot = ;
- bridge = cut.size();
- for(int i = ; i < bridge; ++i){
- // printf("%d %d\n",scc_no[cut[i].first],scc_no[cut[i].second]);
- add(scc_no[cut[i].first],scc_no[cut[i].second]);
- }
- /*
- for(int i = 1; i <= scc_num; ++i){
- printf("u = %d\t",i);
- for(int o = head[i]; ~o; o = e[o].nxt) printf("%d ",e[o].to);
- cout << endl;
- }*/
- }
- void show_info(){
- for(int i = ; i <= n; ++i){
- printf("loc = %d scc_no = %d\n",i,scc_no[i]);
- }
- }
- void solve(){
- for(int i = ; i <= n; ++i) head[i] = -; tot = ;
- for(int i = ; i <= m; ++i){
- scanf("%d%d",&u,&v);
- add(u,v);
- }
- tarjan(,);
- rebuild();
- int s = ;
- for(int i = ; i <= scc_num; ++i){
- d[i] = -; vis[i] = ;
- }
- dfs(s,);
- for(int i = ; i <= scc_num; ++i){
- if(d[s] < d[i]) s = i;
- }
- for(int i = ; i <= scc_num; ++i){
- d[i] = -; vis[i] = ;
- }
- dfs(s,);
- int max_len = ;
- for(int i = ; i <= scc_num; ++i) max_len = max(max_len,d[i]);
- // printf("max_len = %d\n",max_len);
- //printf("%lf\n",(double)(bridge-max_len)/(m+1));
- printf("%lld\n",1ll*(bridge-max_len)*quick(m+,mod-)%mod);
- }
- int main(){
- scanf("%d%d",&n,&m);
- solve();
- //show_info();
- return ;
- }
牛客练习赛56 E 小雀和他的王国的更多相关文章
- 牛客练习赛56 B 小琛和他的学校
题目链接:https://ac.nowcoder.com/acm/contest/3566/B 思路:一条路可把图分为左右两部分. l_ci, l_peo, r_ci, r_peo, w 分别为左边城 ...
- 牛客练习赛48 C 小w的糖果 (数学,多项式,差分)
牛客练习赛48 C 小w的糖果 (数学,多项式) 链接:https://ac.nowcoder.com/acm/contest/923/C来源:牛客网 题目描述 小w和他的两位队友teito.toki ...
- 牛客练习赛48 A· 小w的a+b问题 (贪心,构造,二进制)
牛客练习赛48 A· 小w的a+b问题 链接:https://ac.nowcoder.com/acm/contest/923/A来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C ...
- 牛客练习赛44 C 小y的质数 (数论,容斥定理)
链接:https://ac.nowcoder.com/acm/contest/634/C 来源:牛客网 题目描述 给出一个区间[L,R],求出[L,R]中孪生质数有多少对. 由于这是一个区间筛质数的模 ...
- 牛客练习赛44 B 小y的线段 (思维)
链接:https://ac.nowcoder.com/acm/contest/634/B 来源:牛客网 题目描述 给出n条线段,第i条线段的长度为a_ia i ,每次可以从第i条线段的j位置跳到第 ...
- 牛客练习赛44 A 小y的序列 (模拟,细节)
链接:https://ac.nowcoder.com/acm/contest/634/A 来源:牛客网 小y的序列 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语 ...
- 牛客练习赛48 D 小w的基站网络
链接:https://ac.nowcoder.com/acm/contest/923/D来源:牛客网 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 262144K,其他语言52428 ...
- 牛客练习赛40 A 小D的剧场 (思维dp)
链接:https://ac.nowcoder.com/acm/contest/369/A 题目描述 若你摘得小的星星 你将得到小的幸福 若你摘得大的星星 你将得到大的财富 若两者都能摘得 你将得到 ...
- 牛客练习赛40 C 小A与欧拉路(树的直径)
链接:https://ac.nowcoder.com/acm/contest/369/C 题目描述 小A给你了一棵树,对于这棵树上的每一条边,你都可以将它复制任意(可以为0)次(即在这条边连接的两个点 ...
随机推荐
- 9. Palindrome Number QuestionEditorial Solution
Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. S ...
- 2018天梯赛、蓝桥杯、(CCPC省赛、邀请赛、ICPC邀请赛)校内选拔赛反思总结!
才四月份,上半年的比赛就告一段落了.. 天梯赛混子,三十个人分最低,把队友拖到了国三,蓝桥杯省二滚粗,止步京城,旅游选拔赛成功选为替补二队,啊! 不过既然已经过去,我们说些乐观的一面,积累了大赛经验是 ...
- Go语言实现:【剑指offer】链表中环的入口结点
该题目来源于牛客网<剑指offer>专题. 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null. Go语言实现: /** * Definition for sing ...
- python学习(10)字典学习,写一个三级菜单程序
学习了字典的应用.按老师的要求写一个三级菜单程序. 三级菜单程序需求如下: 1.深圳市的区--街道--社区---小区4级 2.建立一个字典,把各级区域都装进字典里 3.用户可以从1级进入2级再进入3级 ...
- BeautifulSoup入门
BeautifulSoup库入门 BeautifulSoup库的理解 BeautifulSoup库是解析.遍历.维护”标签树”的功能库 示例代码: from bs4 import BeautifulS ...
- java 获取两个时间之前所有的日期
正序(2017-01-01 ~2019-xxxxx) package com.founder.util; import java.text.SimpleDateFormat; import java. ...
- 见异思迁:K8s 部署 Nginx Ingress Controller 之 kubernetes/ingress-nginx
前天才发现,区区一个 nginx ingress controller 竟然2个不同的实现.一个叫 kubernetes/ingress-nginx ,是由 kubernetes 社区维护的,对应的容 ...
- centos7利用系统镜像修复grub
1 故障描述 由于错误操作,导致grub配置文件失效,系统开机后一直卡在下面的画面. 2 解决办法 这时候,就要利用系统镜像光盘,进入修复模式,然后按下面图示操作 进入镜像的shell环境,如下图所示 ...
- jsplumb 常用事件
1. jsPlumb.getAllConnections() 获取所有连接线2. jsPlumb.deleteEveryConnection(); 清空所有连接线3. jsPlumb.deleteCo ...
- 快速筛出topK的快速选择算法和BFPRT优化
本文始发于个人公众号:TechFlow,原创不易,求个关注 在之前Python系列当中,我们介绍了heapq这个库的用法,它可以在\(O(nlogn)\)的时间里筛选出前K大或者前K小的元素.今天我们 ...