传送门:http://lightoj.com/volume_showproblem.php?problem=1210
1210 - Efficient Traffic System
Time Limit:2 second(s)
|
Memory Limit:32 MB
|
I was given the task to make all the major two way roads in Bangladesh into one way roads. And I have done that easily with some great pruning. And I asked the Govt. Traffic Management System to change the direction of all the roads.
But after some days, I realized that I should have thought of the fact that all cities should be reachable from other cities using the existing one way roads. Since the traffic system is already designed, so it may not be changed. But I can ask the govt.
to build new roads between any pair of cities.
Now since the task looks quite hard for me, I am asking you to do it for me. I will give you the current roads configuration. You have to find the minimum number of roads that have to be built such that it's possible to go from any city to any other city.
Input
Input starts with an integerT (≤ 25), denoting the number of test cases.
Each case starts with a blank line. Next line contains two integersn (1 ≤ n ≤ 20000)andm (0 ≤ m ≤ 50000), wherendenotes the number of cities andmdenotes the number of one way roads.
Each of the nextmlines contains two integersu v (1 ≤ u, v ≤ n, u ≠ v)meaning that there is a road fromutov. Assume that there can be at most one road from a cityutov.
Output
For each case, print the case number and the minimum number of roads that have to be built.
Sample Input
|
Output for Sample Input
|
2
3 0
3 2
1 2
1 3
|
Case 1: 3
Case 2: 2
|
Note
Dataset is huge. Use faster I/O methods.
SPECIAL THANKS: JANE ALAM JAN (DESCRIPTION, SOLUTION, DATASET)
题意:给定一个有向图,问最少加几条边使得图成为SCC。
注意求度的时候需要遍历所有的边,所以DFS中计算度的位置要摆正确。。
代码:
#include<iostream>
#include<vector>
#include<stack>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
const int MAXN = 22222;
int low[MAXN],dfn[MAXN],ind[MAXN],outd[MAXN],belong[MAXN],t,n,m,deep,scc;
vector<int> g[MAXN];
stack<int> s;
void init(){
memset(dfn,-1,sizeof(dfn));
memset(ind,0,sizeof(ind));
memset(outd,0,sizeof(outd));
memset(belong,-1,sizeof(belong));
scc = deep = 0;
for(int i=0;i<MAXN;i++)g[i].clear();
while(!s.empty())s.pop();
}
void tarjan(int u){
low[u] = dfn[u] = deep++;
s.push(u);
for(int i=0;i<(int)g[u].size();i++){
int v = g[u][i];
if(dfn[v]==-1){
tarjan(v);
low[u] = min(low[u],low[v]);
}else if(belong[v]==-1){
low[u] = min(low[u],dfn[v]);
}
}
if(low[u]==dfn[u]){
int v;
do{
v = s.top();
s.pop();
belong[v]=scc;
}while(v!=u);
//cout<<scc<<" "<<u<<endl;
scc++;
}
}
void DFS(int u){
dfn[u] = 1;
for(int i=0;i<(int)g[u].size();i++){
int v = g[u][i];
if(belong[u]!=belong[v]){
outd[belong[u]]++;
ind[belong[v]]++;
}
if(!dfn[v]){
DFS(v);
}
}
}
int solve(){
if(scc==1)return 0;
int maxi=0,maxo=0;
for(int i=0;i<scc;i++){
if(!outd[i])maxo++;
if(!ind[i])maxi++;
}
//cout<<maxo<<" "<<maxi<<endl;
return max(maxi,maxo);
}
int main(){
scanf("%d",&t);
for(int cas=1;cas<=t;cas++){
scanf("%d%d",&n,&m);init();
while(m--){
int a,b;
scanf("%d%d",&a,&b);
a--,b--;
g[a].push_back(b);
}
for(int i=0;i<n;i++)if(dfn[i]==-1)tarjan(i);
memset(dfn,0,sizeof(dfn));
//for(int i=0;i<n;i++)cout<<belong[i]<<endl;
for(int i=0;i<n;i++)if(!dfn[i])DFS(i);
printf("Case %d: %d\n",cas,solve());
}
return 0;
}
分享到:
相关推荐
【标题】"LightOJ-Solved-Code"指的是一个关于在Light Online Judge平台上解决编程问题的代码集合。这个集合很可能包含了作者在LightOJ上解答各类算法问题的C++源代码。LightOJ是一个在线的编程竞赛平台,它提供了一...
标题中的“lightoj-tutorial-editorial-by-sayeed”指的是LightOJ(Light Online Judge)平台上的一篇教程或社论,由用户Sayeed撰写,旨在帮助用户了解如何在LightOJ上创建类似于Codeforces编辑模式的教程。...
【标题】"LightOJ-solutions" 是一个与编程竞赛相关的资源,主要包含了参与 LightOJ(Light Online Judge)平台的解题方案。这个压缩包很可能是某位参赛者或编程爱好者整理的代码集合,旨在分享他们在解决 LightOJ ...
leetcode中国 数据结构和算法编码 议程 :balloon: 不是为了比赛,而是为了训练和兴趣。 Python3 你可以在这里找到我的 LeetCode 解决方案:(等待打开) ...LightOJ 1012 --- dfs transform 13. HDU 1495 --- compl
"LightOJ"是一个在线判题系统,专为竞赛编程和算法训练而设计。它允许用户提交代码并立即获得运行结果、时间复杂度和空间复杂度等反馈。这个平台广泛支持多种编程语言,包括C++,因此在标签中提到了"C++"。现在我们...
解析编程问题,并将其发送给CHelper插件以实现IntelliJ IDEA。 竞争性伴侣解析程序...-HackerRank-HDU在线法官-Kattis-LightOJ-NYTD在线法官-PEG法官-POJ-QDUOJ-Timus-URI在线法官 支持语言:English (United States)
LightOJ是一个在线编程竞赛平台,它为程序员和计算机科学爱好者提供了一系列的算法问题来解决。这个存储库是一个专门针对LightOJ问题的教程集合,旨在帮助用户更好地理解和解决这些问题。下面,我们将深入探讨其中...
【压缩包子文件的文件名称列表】"LightOJ-master"可能是一个Git仓库的名称,暗示了这个问题解决方案可能是开源的,并且包含了一个项目的主分支。通常,这样的仓库会包含源代码、文档、测试用例和其他资源,帮助用户...
leetcode 2 和 c 动态规划 动态规划相关问题的解答。 这些问题来自各种在线评委,包括 、 、 等。 解决方案是用 C++ 编码的。 —— —— —— —— —— —— —— —— —— —— —— —— ...——
已解决的编程问题 Online Judges 这个存储库包含我解决的各种在线法官的编程问题的解决方案,即 UVa、Topcoder、Codeforces、Hackerrank、LightOj、Spoj、Project Euler 等。
这里的题目设计新颖,挑战性强,是提升编程竞技水平的理想之地。 4. **UVA Solutions**:UVA Online Judge提供了数千个经典算法问题,是学习和实践算法的好去处。用户可以通过查看他人解题思路,提高自己的问题解决...
这是乔杜里医学博士。 伊斯玛姆·拉赫曼(Ishmam Rahman) :closed_mailbox_with_raised_flag: 联络我: ... LightOJ: ://lightoj.com/user/ishmam64 脸书: : 目标:使自己在新技术的海洋中立足,在这里我可
描述中提到的“uva”,“lightoj”,“spoj”,“timus”都是知名的在线编程竞赛平台,它们为程序员提供了各种算法和逻辑思维的练习题目。 在这个项目的压缩包 "solving-oj-problems-master" 中,我们可以推测它...
race_words = [“后缀数组”,“前缀特里”,“动态编程”,“竞赛”,“ codeforces”,“编程”,“竞争性编程”,“算法”,“数据结构”,“ codeforces”,“ light oj”,“ lightoj”,“ spoj”,“堆栈”,...
开心农场java源码AA Noman Ansary 你好呀! 我的名字是AA Noman Ansary 。 但我更喜欢被称为Showrav...问题解决:LightOJ。 代码部队。 蒂姆斯。 紫外线。 成就 以下是我的一些显著成就: BRAC 大学副校长证书。 (2019)
这个仓库是关于什么的 创建该存储库是为了组织与数据结构和算法有关的问题的解决方案。 并且,如果可能的话,为学习与数据结构和算法有关的各种概念提供一种更简单的方法。 以下评委使用的问题 ...
测试程序TestProgram 是针对竞争性编程程序(即 Codeforces、lightOJ、OmegaUp 等)的专用测试工具。 当我们解决问题时,我们必须非常小心,并致力于解决所有可能的情况。 我们的解决方案在登顶前正确解决的测试用例...