UVa 10926 - How Many Dependencies?

题目:给你一下任务以及这些任务的依赖关系,求有最长依赖关系链的任务。

分析:搜索。可以利用dfs或者记忆化搜索。

(因为没有环是树状结构,所以每个根计算时的解就是最终结果,不会被更新)。

说明:每次要清空标记的数组。

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

using namespace std;

int maps[101][101];
int used[101];

int dfs(int s, int n)
{
	if (used[s]) return used[s];
	int Max = 0;
	for (int i = 1 ; i <= n ; ++ i)
		if (maps[s][i])
			Max = max(Max, dfs(i, n)+1);
	return used[s] = Max;
}

int main()
{
	int n,m,p;
	while (~scanf("%d",&n) && n) {
		memset(maps, 0, sizeof(maps));
		memset(used, 0, sizeof(used));
		for (int i = 1 ; i <= n ; ++ i) {
			scanf("%d",&m);
			for (int j = 1 ;  j <= m ; ++ j) {
				scanf("%d",&p);
				maps[i][p] = 1;
			}
			maps[0][i] = 1;
		}

		dfs(0, n);
		int space = 1;
		for (int i = 2 ; i <= n ; ++ i)
			if (used[space] < used[i])
				space = i;

		printf("%d\n",space);
	}
    return 0;
}
时间: 2024-10-09 07:22:31

UVa 10926 - How Many Dependencies?的相关文章

【例题 6-21 UVA - 506】System Dependencies

[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 记录每个物品它的依赖有哪些,以及它被哪些东西依赖就可以了. 显式安装的东西不能被隐式删除删掉(就是remove item,然后删除item的依赖的过程叫隐式删除,而删除item本身叫显式删除); 而只能被显式删除. 隐式安装的依赖则可以被显式或隐式删除都行. (显示安装指的是 install item,安装item本身,而安装item的依赖,都称为是隐式的安装) 写个安装和删除的递归函数就好. 样例的答案有误. remove b

【STL+模拟】UVa 506 - System Dependencies

System Dependencies  Components of computer systems often have dependencies--other components that must be installed before they will function properly. These dependencies are frequently shared by multiple components. For example, both the TELNET cli

UVA 506 System Dependencies(模拟 烂题)

https://vjudge.net/problem/UVA-506 题目是给出了五种指令,DEPEND.INSTALL.REMOVE.LIST.END,操作的格式及功能如下: DEPEND item1 item2 (item3 ...) 安装item1需要先安装item2(.item3--) INSTALL item1 安装item1,如果item1依赖其他组件,则先安装其依赖的其他组件 REMOVE item1 移除item1及其依赖的全部组件,如果组件被其他程序依赖,则不移除 LIST 输

UVa 506 System Dependencies (细节问题)

题意:输入几种指令,让你进行模拟操作,指令如下: DEPEND item1 item2 (item3 ...) 安装item1需要先安装item2(.item3……) INSTALL item1 安装item1,如果item1依赖其他组件,则先安装其依赖的其他组件(如果已经安装就不用安装了) REMOVE item1 移除item1及其依赖的全部组件,如果组件被其他程序依赖,则不移除 LIST 输出当前已安装的所有组件 END 结束程序 析:看到这个题,虽然是放在数据结构这一章里,没觉得有什么数

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