UVa 11504 - Dominos

题目:有一些多米诺骨牌,现在告诉你他们的相邻顺序,问最少推几次可以把他们全部推倒。

分析:图论,强连通分量。强连通分量上的某点被推到,整个分量都会倒。

求强连通分量,然后缩点,剩下的“点”中每个入度为0的点都要用手推倒;(必要性)

再者,在缩点后的图中,每次找到一个入度为0的点推倒后,不会产生新的入度为0的点;(充分性)

(新产生的入度为0的点,之前入度一定不为0,那么它的前驱倒下后,他也必然倒下,不会留下来)

综上,要推倒所有入度为0的点,所有点就倒下了。

说明:注意是有向图。

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>

using namespace std;

//link_define
typedef struct enode
{
	int    point;
	enode* next;
}edge;
edge  E[100001];
edge* H[100001];
int   edge_count;

void link_initial()
{
	edge_count = 0;
	memset(E, 0, sizeof(E));
	memset(H, 0, sizeof(H));
}

void link_add(int a, int b)
{
	E[edge_count].point = b;
	E[edge_count].next = H[a];
	H[a] = &E[edge_count ++];
}
//link_end

int  use[100001],dfn[100001],low[100001],stk[100001],set[100001];
int  s_id,times,top;
void tarjan(int i, int j)
{
    dfn[i] = low[i] = ++ times;
    use[i] = 1;
    stk[++ top] = i;
    for (edge* p = H[i] ; p ; p = p->next) {
        if (!dfn[p->point]) {
            tarjan(p->point, 0);
            low[i] = min(low[i], low[p->point]);
        }else if (use[p->point])
            low[i] = min(low[i], dfn[p->point]);
    }
    if (dfn[i] == low[i]) {
        s_id ++;
        do {
            j = stk[top --];
            use[j] = 0;
            set[j] = s_id;
        }while (j != i);
    }
}

int in[100001];

int main()
{
	int t,n,m,a,b;
	while (~scanf("%d",&t))
	while (t --) {
		scanf("%d%d",&n,&m);
		link_initial();
		for (int i = 1 ; i <= m ; ++ i) {
			scanf("%d%d",&a,&b);
			link_add(a, b);
		}

		//强连通分量
	    s_id = times = top = 0;
	    memset(dfn, 0, sizeof(dfn));
	    memset(use, 0, sizeof(use));
	    for (int i = 1 ; i <= n ; ++ i)
	        if (!dfn[i])
	            tarjan(i, 0);

		memset(in, 0, sizeof(in));
		for (int i = 1 ; i <= n ; ++ i)
			for (edge *p = H[i] ; p ; p = p->next)
				if (set[i] != set[p->point])
					in[set[p->point]] ++;
		int count = 0;
		for (int i = 1 ; i <= s_id ; ++ i)
			count += !in[i];

		printf("%d\n",count);
	}
	return 0;
}
时间: 2024-10-03 04:16:31

UVa 11504 - Dominos的相关文章

UVA 11504 - Dominos(强连通分量)

UVA 11504 - Dominos 题目链接 题意:给定一个多米诺骨牌的有向图,为最多要推几个才能全倒 思路:强连通分量,缩点后找出度数为0的点就是答案 代码: #include <cstdio> #include <cstring> #include <vector> #include <stack> #include <algorithm> using namespace std; const int N = 100005; vector

UVA 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d

UVA 10341 Solve It

Problem F Solve It Input: standard input Output: standard output Time Limit: 1 second Memory Limit: 32 MB Solve the equation: p*e-x + q*sin(x) + r*cos(x) + s*tan(x) + t*x2 + u = 0 where 0 <= x <= 1. Input Input consists of multiple test cases and te

UVA 11014 - Make a Crystal(容斥原理)

UVA 11014 - Make a Crystal 题目链接 题意:给定一个NxNxN的正方体,求出最多能选几个整数点.使得随意两点PQ不会使PQO共线. 思路:利用容斥原理,设f(k)为点(x, y, z)三点都为k的倍数的点的个数(要扣掉一个原点O).那么全部点就是f(1),之后要去除掉共线的,就是扣掉f(2), f(3), f(5)..f(n).n为素数.由于这些素数中包括了合数的情况,而且这些点必定与f(1)除去这些点以外的点共线,所以扣掉.可是扣掉后会扣掉一些反复的.比方f(6)在f

[UVa] Palindromes(401)

UVA - 401 Palindromes Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDED

uva 401.Palindromes

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=342 题目意思:给出一段字符串(大写字母+数字组成).判断是否为回文串 or 镜像串 or 回文镜像串 or 什么都不是.每个字母的镜像表格如下 Character Reverse Character Reverse Character Reverse A A M M Y Y B

[2016-02-19][UVA][129][Krypton Factor]

UVA - 129 Krypton Factor Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu Submit Status Description You have been employed by the organisers of a Super Krypton Factor Contest in which contestants have very high mental and physica

[2016-02-03][UVA][514][Rails]

时间:2016-02-03 22:24:52 星期三 题目编号:UVA 514 题目大意:给定若干的火车(编号1-n),按1-n的顺序进入车站, 给出火车出站的顺序,问是否有可能存在 分析:    FIFO,用栈模拟一遍即可, 方法:    根据输入的顺序,从1-n开始,当前操作的为i 如果i是当前对应的编号,那么直接跳过(进入B) 如果不是,根据当前需求的编号,小于i,就从栈顶弹出一个元素, 看这个元素是否是需求的,是则继续.否则NO 1 2 3 4 5 6 7 8 9 10 11 12 13

uva 11584 Partitioning by Palindromes 线性dp

// uva 11584 Partitioning by Palindromes 线性dp // // 题目意思是将一个字符串划分成尽量少的回文串 // // f[i]表示前i个字符能化成最少的回文串的数目 // // f[i] = min(f[i],f[j-1] + 1(j到i是回文串)) // // 这道题还是挺简单的,继续练 #include <algorithm> #include <bitset> #include <cassert> #include <