当前位置:网站首页>Acwing164. Accessibility Statistics (topological sorting +bitset)

Acwing164. Accessibility Statistics (topological sorting +bitset)

2022-07-05 00:05:00 eva_ can(not)survive

164. Accessibility Statistics - AcWing Question bank High quality algorithm question bank https://www.acwing.com/problem/content/166/ For the first time bitset What a magical container , It is very convenient for us to calculate subsets .

This question also directly shows that there is a DAG So we can find the topological sequence directly , Then traverse in reverse order and record the states that can be reached at each point .

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <cstring>
#include <set>
#include <cmath>
#include <map>
#include <bitset>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
const int MN = 65005;
const int MAXN = 1e6 + 10;
const int INF = 0x3f3f3f3f;
#define IOS ios::sync_with_stdio(false)
#define lowbit(x) ((x)&(-x))
using P = pair<int, int>;

int ver[MAXN];
int head[MAXN];
int nxt[MAXN];
int cnt;
int in[MAXN];
int tuop[MAXN];
int cnt1;
void add(int x, int y) {
	ver[++cnt] = y;
	nxt[cnt] = head[x];
	head[x] = cnt;
	in[y]++;
}
int n, m;
const int N = 3e4 + 5;
bitset<N> rec[N];

void topsort() {
	queue<int> q;
	map<int, int> mp;
	for (int i = 1; i <= n; i++) {
		if (in[i])
			continue;
		q.push(i);
	}
	while (!q.empty()) {
		int t = q.front();
		q.pop();
		tuop[++cnt1] = t;
		for (int i = head[t]; i; i = nxt[i]) {
			int v = ver[i];
			in[v]--;
			if (!in[v])
				q.push(v);
		}
	}
}


int main() {
	scanf("%d %d", &n, &m);
	int x, y;
	for (int i = 1; i <= m; i++) {
		scanf("%d %d", &x, &y);
		add(x, y);
	}
	topsort();
	for (int i = n; i >= 1; i--) {
		int j = tuop[i];
		rec[j][j] = 1;
		for (int k = head[j]; k; k = nxt[k]) {
			int v = ver[k];
			rec[j] |= rec[v];
		}
	}
	for (int i = 1; i <= n; i++) {
		printf("%d\n", rec[i].count());
	}
	return 0;
}

原网站

版权声明
本文为[eva_ can(not)survive]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/186/202207050002306734.html