【洛谷】P4819 [中山市选] 杀人游戏 的题解

【洛谷】P4819 [中山市选] 杀人游戏 的题解

题目传送门

题解

Tarjan 我可爱的 Tarjan 嘻嘻qaq

枚举每一个点,然后枚举每条出边,如果相连的两个点在同一个强连通分量中,或者 x x x 所在的强连通分量与 y y y 所在的强连通分量已经建过边,则需要忽略这条边,接着将 y y y 所在的强连通分量标记为已建过边,接着统计每个强连通分量的入度,最后清空 vst 数组。继续下一个循环。

主要解释都在代码里了,各位就看看代码吧。

代码

#include <bits/stdc++.h>
#define lowbit(x) x & (-x)
#define endl "\n"
#define maxn 300005
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
namespace fastIO {
	inline int read() {
		register int x = 0, f = 1;
		register char c = getchar();
		while (c < '0' || c > '9') {
			if(c == '-') f = -1;
			c = getchar();
		}
		while (c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
		return x * f;
	}
	inline void write(int x) {
		if(x < 0) putchar('-'), x = -x;
		if(x > 9) write(x / 10);
		putchar(x % 10 + '0');
		return;
	}
}
using namespace fastIO;
struct node{
	int to, next;
};
node t[maxn * 2], tc[maxn * 2];
int n, m, tot, totc, num, cnt;
int h[maxn], hc[maxn], dfn[maxn], low[maxn], in[maxn], c[maxn], sum[maxn], vst[maxn], f[maxn], rd[maxn];
stack<int> s;
inline void add(int x, int y){
	t[++ tot].to = y;
	t[tot].next = h[x];
	h[x] = tot;
}
inline void addc(int x, int y) { //建新图
	tc[++ totc].to = y;
	tc[totc].next = hc[x];
	hc[x] = totc;
}
void tarjan(int x) {
	dfn[x] = low[x] = ++ num;
	s.push(x);
	in[x] = 1;
	for(int i = h[x]; i; i = t[i].next) {
		int y = t[i].to;
		if(!dfn[y]) {
			tarjan(y);
			low[x] = min(low[x], low[y]);
		}
		else if(in[y]) low[x] = min(low[x], dfn[y]);
	}
	if(dfn[x] == low[x]) {
		cnt ++;
		int y;
		do {
			y = s.top();
			s.pop();
			in[y] = 0;
			c[y] = cnt;
			sum[cnt] ++; //cnt就是这个强连通分量的编号
		}while(x != y);
	}
}
void clear(int x) {
	for(int i = h[x]; i; i =t[i].next) {
		vst[c[t[i].to]] = 0;
	}
}
bool check(int x){
	if (rd[x] or sum[x] != 1) return false; //入度为0并且只有一个点才继续判断
	for(int i = hc[x]; i; i = tc[i].next) {
		if(rd[tc[i].to] == 1) {
			return false; //必须要有其他人认识
		}
	}
	return true;
}
int main() {
	//freopen(".in","r",stdin);
	//freopen(".out","w",stdout);
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int x, y;
	n = read(); m = read();
	for(int i = 1; i <= m; i ++) {
		x = read(); y = read();
		add(x, y);
	}
	for(int i = 1; i <= n; i ++) {
		if(!dfn[i]) {
			tarjan(i);
		}
	}
	for(int x = 1; x <= n; x ++) { //枚举每一个点
		for(int i = h[x]; i; i = t[i].next) { //枚举每条出边
			int y = t[i].to;
			if(c[x] == c[y] or vst[c[y]]) continue; //如果相连的两个点在同一个强连通分量中,或者x所在的强连通分量与y所在的强连通分量已经建过边,则需要忽略这条边
			vst[c[y]] = 1; //将y所在的强连通分量标记为已建过边
			addc(c[x], c[y]); //建边
			rd[c[y]] ++; //统计每个强连通分量的入度
		}
		clear(x); //清空vst数组
	}
	int ans = 0;
	for(int i = 1; i <= cnt; i ++) {
		if(!rd[i]) {
			ans ++; //统计入度为0的强连通分量的个数
		}
	}
	for(int i = 1; i <= cnt; i ++) {
		if(check(i)) { //符合条件
			ans --;
			break; //这种情况只存在一次,所以如果找到了,就需要break
		}
	}
	printf("%.6lf", double(double(n - ans) / double(n))); //将int转为double,保留小数
	return 0;
}
对于洛谷上的p1036题目,我们可以使用Python来解决。下面是一个可能的解法: ```python def dfs(nums, target, selected_nums, index, k, sum): if k == 0 and sum == target: return 1 if index >= len(nums) or k <= 0 or sum > target: return 0 count = 0 for i in range(index, len(nums)): count += dfs(nums, target, selected_nums + [nums[i]], i + 1, k - 1, sum + nums[i]) return count if __name__ == "__main__": n, k = map(int, input().split()) nums = list(map(int, input().split())) target = int(input()) print(dfs(nums, target, [], 0, k, 0)) ``` 在这个解法中,我们使用了深度优先搜索(DFS)来找到满足要求的数列。通过递归的方式,我们遍历了所有可能的数字组合,并统计满足条件的个数。 首先,我们从给定的n和k分别表示数字个数和需要取的数字个数。然后,我们输入n个数字,并将它们存储在一个列表nums中。接下来,我们输入目标值target。 在dfs函数中,我们通过迭代index来择数字,并更新取的数字个数k和当前总和sum。如果k等于0且sum等于target,我们就找到了一个满足条件的组合,返回1。如果index超出了列表长度或者k小于等于0或者sum大于target,说明当前组合不满足要求,返回0。 在循环中,我们不断递归调用dfs函数,将取的数字添加到selected_nums中,并将index和k更新为下一轮递归所需的值。最终,我们返回所有满足条件的组合个数。 最后,我们在主程序中读入输入,并调用dfs函数,并输出结果。 这是一种可能的解法,但不一定是最优解。你可以根据题目要求和测试数据进行调试和优化。希望能对你有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值