博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zoj 3795 Grouping tarjan缩点 + DGA上的最长路
阅读量:6902 次
发布时间:2019-06-27

本文共 3102 字,大约阅读时间需要 10 分钟。

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu
Submit     

Description

Suppose there are N people in ZJU, whose ages are unknown. We have some messages about them. The i-th message shows that the age of person si is not smaller than the age of person ti. Now we need to divide all these N people into several groups. One's age shouldn't be compared with each other in the same group, directly or indirectly. And everyone should be assigned to one and only one group. The task is to calculate the minimum number of groups that meet the requirement.

 

Input

There are multiple test cases. For each test case: The first line contains two integers N(1≤ N≤ 100000), M(1≤ M≤ 300000), N is the number of people, and M is is the number of messages. Then followed by M lines, each line contain two integers si and ti. There is a blank line between every two cases. Process to the end of input.

Output

For each the case, print the minimum number of groups that meet the requirement one line.

Sample Input

4 41 21 32 43 4

Sample Output

3

Hint

set1= {1}, set2= {2, 3}, set3= {4}

 

思路:题目给出a, b  是指a不小于b, 即a可以等于b, a到b拉一条有向边,多个相等的时候会成环,直接求最长路则会死循环, 所以应该先用tarjan把强联通分量缩成一个点,点权就代表该强联通分量中点的数目,再求最长路

#include 
#include
#include
#include
#include
#include
#include
using namespace std;const int N = 211111;const int E = 333333;vector
G[N];int pre[N], low[N], sccno[N], num[N], dfs_ck, scc_cnt;stack
s;void dfs(int u){ pre[u] = low[u] = ++dfs_ck; s.push(u); for(int i = 0; i < G[u].size(); ++i) { int v = G[u][i]; if(!pre[v]) { dfs(v); low[u] = min(low[u], low[v]); } else if(!sccno[v]) { low[u] = min(low[u], pre[v]); } } if(low[u] == pre[u]) { scc_cnt++; for(;;) { num[scc_cnt]++; int x = s.top(); s.pop(); sccno[x] = scc_cnt; if(x == u) break; } }}void find_scc(int n){ dfs_ck = scc_cnt = 0; memset(sccno, 0, sizeof sccno); memset(pre, 0, sizeof pre); memset(num, 0, sizeof num); for(int i = 1; i <= n; ++i) if(!pre[i]) dfs(i);}int dp[N];vector
G2[N];void init(int n){ for(int i = 0; i <= n; ++i) G[i].clear(); for(int i = 0; i <= n; ++i) G2[i].clear(); while(!s.empty()) s.pop();}int get(int u){ int& res = dp[u]; if(res != -1) return res; res = num[ u ]; // 一开始写成 res = num[ sccno[u] ], wa, 建图的时候已经是通过scc编号来建图了 int sx = G2[u].size(); for(int j = 0; j < sx; ++j) res = max(res, get(G2[u][j]) + num[ u ]); return res;}int main(){ int n, m; while(~scanf("%d%d", &n, &m)) { int u, v; init(n); for(int i = 0; i < m; ++i) { scanf("%d%d", &u, &v); G[u].push_back(v); } find_scc(n); // printf("%d\n", scc_cnt); // for(int i = 1; i <= n; ++i) printf("%d %d\n", i, sccno[i]); for(int i = 1; i <= n; ++i) { int sx = G[i].size(); for(int j = 0; j < sx; ++j) { int v = G[i][j]; if(sccno[i] != sccno[v]) { G2[ sccno[i] ].push_back(sccno[v]); //通过scc编号来建图 // printf("%d %d\n", sccno[i], sccno[v]); } } } memset(dp, -1, sizeof dp); int ans = 0; for(int i = 1; i <= scc_cnt; ++i) ans = max(ans, get(i)); printf("%d\n", ans); }}

  

转载于:https://www.cnblogs.com/orchidzjl/p/4728637.html

你可能感兴趣的文章
Java多线程之先行发生原则(happens-before)
查看>>
React Render props
查看>>
自动类型转换
查看>>
C# winfrom 当前程序内存读取和控制
查看>>
电话号码分身
查看>>
Redis持久化方案
查看>>
Unity保存序列化数据
查看>>
测试jupyter notebook导出md格式的兼容性
查看>>
【转】WPF MultiBinding 和 IMultiValueConverter
查看>>
解决springMVC文件上传报错: The current request is not a multipart request
查看>>
Struts2国际化-getText()方法
查看>>
实时监听组件中路由的变化
查看>>
MnasNet:迈向移动端机器学习模型设计的自动化之路
查看>>
选项卡的JS
查看>>
青蛙的约会(扩展欧几里得)
查看>>
Asia Yokohama Regional Contest 2018 C题 - Arithmetic Progressions(思维)
查看>>
UVa 101 - The Blocks Problem STL
查看>>
计算机专业术语
查看>>
Leetcode-探索 | 移动零
查看>>
DBI 数据库模块剖析:Perl DBI 数据库通讯模块规范,工作原理和实例
查看>>