题目链接:http://codeforces.com/problemset/problem/131/D

思路: 题目的意思是说给定一个无向图,求图中的顶点到环上顶点的最短距离(有且仅有一个环,并且环上顶点的距离不计)。

一开始我是直接用Tarjan求的无向图的双连通分量,然后标记连通分量上的点(如果某一个连通分量上的顶点的个数大于1,那么就是环了,其余的都只有一个点),然后即使重新建图,spfa求最短路径。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#define REP(i, a, b) for (int i = (a); i < (b); ++i)
#define FOR(i, a, b) for (int i = (a); i <= (b); ++i)
using namespace std; const int MAX_N = (3000 + 300);
int dfn[MAX_N], low[MAX_N], cnt, N, _count, color[MAX_N];
int st, dist[MAX_N];
bool mark[MAX_N];
vector<int > g[MAX_N], reg[MAX_N];
stack<int > S; void Tarjan(int u, int father)
{
low[u] = dfn[u] = ++cnt;
S.push(u);
mark[u] = true;
REP(i, 0, (int)g[u].size()) {
int v = g[u][i];
if (father == v) continue;
if (dfn[v] == 0) {
Tarjan(v, u);
low[u] = min(low[u], low[v]);
} else if (mark[v]) {
low[u] = min(low[u], dfn[v]);
}
}
if (low[u] == dfn[u]) {
int x, num = 0;
++_count;
do {
x = S.top();
S.pop();
mark[x] = false;
color[x] = _count;
++num;
} while (x != u);
if (num > 1) st = _count;
}
} void spfa(int st)
{
queue<int > que;
memset(dist, 0x3f, sizeof(dist));
memset(mark, false, sizeof(mark));
dist[st] = 0;
que.push(st);
while (!que.empty()) {
int u = que.front();
que.pop();
REP(i, 0, (int)reg[u].size()) {
int v = reg[u][i];
if (dist[u] + 1 < dist[v]) {
dist[v] = dist[u] + 1;
if (!mark[v]) {
mark[v] = true; que.push(v);
}
}
}
}
} int main()
{
while (cin >> N) {
FOR(i, 1, N) g[i].clear(), reg[i].clear();
FOR(i, 1, N) {
int u, v; cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
cnt = _count = 0;
memset(dfn, 0, sizeof(dfn));
memset(mark, false, sizeof(mark));
FOR(i, 1, N) if (!dfn[i]) Tarjan(i, -1);
FOR(u, 1, N) {
REP(i, 0, (int)g[u].size()) {
int v = g[u][i];
if (color[u] != color[v]) reg[color[u]].push_back(color[v]), reg[color[v]].push_back(color[u]);
}
}
spfa(st);
FOR(i, 1, N) {
cout << dist[color[i]];
if (i == N) cout << endl;
else cout << " ";
}
}
return 0;
}

后来我发现自己想的太复杂了,其实只要一遍dfs就能求出这个环上的点了,具体的做法是从某一点开始深搜,然后如果遇上之前搜过的点,那么说明形成一个环,用一个变量记录这个点,然后回退的时候判断是否遇到过这个点,如果没有遇到过,就把回退路径上的点都标记为环上的点,否则,继续回退。最后即使一遍bfs就可以求出最短路径。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#define REP(i, a, b) for (int i = (a); i < (b); ++i)
#define FOR(i, a, b) for (int i = (a); i <= (b); ++i)
using namespace std; const int MAX_N = (3000 + 300);
int N, flag[MAX_N], dist[MAX_N], mark[MAX_N], found, st, Ok;
vector<int > g[MAX_N]; void dfs(int u, int father)
{
mark[u] = true;
REP(i, 0, (int)g[u].size()) {
int v = g[u][i];
if (v == father) continue;
if (!mark[v]) dfs(v, u);
else { found = 1; st = v; flag[u] = 1; return; } if (found) {
if (Ok) return;
if (st == u) Ok = 1;
flag[u] = 1;
return;
}
}
} void bfs(int st)
{
queue<int > que;
memset(mark, false, sizeof(mark));
mark[st] = true;
dist[st] = 0;
que.push(st);
while (!que.empty()) {
int u = que.front();
que.pop();
REP(i, 0, (int)g[u].size()) {
int v = g[u][i];
if (mark[v]) continue;
mark[v] = true;
if (flag[v]) dist[v] = 0;
else dist[v] = dist[u] + 1;
que.push(v);
}
}
} int main()
{
while (cin >> N) {
FOR(i, 1, N) g[i].clear(), flag[i] = mark[i] = 0;
FOR(i, 1, N) {
int u, v; cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
found = Ok = 0;
dfs(1, 1);
bfs(st);
FOR(i, 1, N) {
cout << dist[i];
if (i == N) cout << endl;
else cout << " ";
}
}
return 0;
}

Codeforces Beta Round #95 (Div. 2) D.Subway的更多相关文章

  1. Codeforces Beta Round #95 (Div. 2) D. Subway dfs+bfs

    D. Subway A subway scheme, classic for all Berland cities is represented by a set of n stations conn ...

  2. Codeforces Beta Round #95 (Div. 2) D. Subway 边双联通+spfa

    D. Subway   A subway scheme, classic for all Berland cities is represented by a set of n stations co ...

  3. codeforces水题100道 第二十六题 Codeforces Beta Round #95 (Div. 2) A. cAPS lOCK (strings)

    题目链接:http://www.codeforces.com/problemset/problem/131/A题意:字符串大小写转换.C++代码: #include <cstdio> #i ...

  4. Codeforces Beta Round #95 (Div. 2) C. The World is a Theatre 组合数学

    C. The World is a Theatre There are n boys and m girls attending a theatre club. To set a play " ...

  5. Codeforces Beta Round #95 (Div. 2) C 组合数学

    C. The World is a Theatre time limit per test 2 seconds memory limit per test 256 megabytes input st ...

  6. Codeforces Beta Round #80 (Div. 2 Only)【ABCD】

    Codeforces Beta Round #80 (Div. 2 Only) A Blackjack1 题意 一共52张扑克,A代表1或者11,2-10表示自己的数字,其他都表示10 现在你已经有一 ...

  7. Codeforces Beta Round #83 (Div. 1 Only)题解【ABCD】

    Codeforces Beta Round #83 (Div. 1 Only) A. Dorm Water Supply 题意 给你一个n点m边的图,保证每个点的入度和出度最多为1 如果这个点入度为0 ...

  8. Codeforces Beta Round #79 (Div. 2 Only)

    Codeforces Beta Round #79 (Div. 2 Only) http://codeforces.com/contest/102 A #include<bits/stdc++. ...

  9. Codeforces Beta Round #77 (Div. 2 Only)

    Codeforces Beta Round #77 (Div. 2 Only) http://codeforces.com/contest/96 A #include<bits/stdc++.h ...

随机推荐

  1. Griddle, griddle-react 一个REACT 表格组件

    Griddle, griddle-react 一个REACT 表格组件: http://griddlegriddle.github.io/Griddle/index.html

  2. 事件查看器事件ID部分说明

    事件查看器从简单的查看电脑登录信息到检查系统是否出现错误,是否被入侵都有着很重要的作用,Microsoft为了简便,采用事件ID来代表一些信息,下面是我从Microsoft找来的WIN2003的对应关 ...

  3. [转]Android下拉刷新完全解析,教你如何一分钟实现下拉刷新功能

    版权声明:本文出自郭霖的博客,转载必须注明出处. 转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/9255575 最近项目中需要用到L ...

  4. DB2环境设置

    作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ 1.级别对应 • Environment variables at the operating system l ...

  5. 解析客户端IP

    <html><head><title>新浪IP解析接口的使用</title><metahttp-equiv=Content-Typecontent ...

  6. 【leetcode】Reverse Linked List(easy)

    Reverse a singly linked list. 思路:没啥好说的.秒... ListNode* reverseList(ListNode* head) { ListNode * rList ...

  7. 【python】Head First Python(五)

    无聊,看看<Head First Python>打发一下时间.感觉这本书很一般,可以无聊的时候翻翻.每一章页数很多,但都没讲什么东西. 先看第五章.记录一下知识点: f.readline( ...

  8. Linux 命令执行结果输出到屏幕的同时写入到文件中

    tee命令可以做到这一点: 例:ls -al /home | tee log 就可以把命令输出的内容显示在屏幕上的同时也输出至文件log.

  9. MVC3.0删除数据的时候给提示信息

    Index.cshtml代码: @model IEnumerable<FirstMvc.Models.Book> <script type="text/javascript ...

  10. js中masonry与infinitescroll结合 形成瀑布流

    后台:(有点问题 page应该从1开始 而不是从0开始)     public function actionExperts()    {        $top=5;        $page=em ...