随笔分类 -  图论 -- Tarjan

摘要:Contest Info 传送门 Solved A B C D E F G H I J K L 8 / 13 Ø O O Ø O - - - Ø Ø - Ø O 在比赛中通过 Ø 赛后通过 ! 尝试了但是失败了 - 没有尝试 Solutions A. Archery Tournament 题意: 现 阅读全文
posted @ 2020-06-06 20:07 heyuhhh 阅读(267) 评论(0) 推荐(0) 编辑
摘要:"洛谷" 题意: 给出一个有向图,每次可以删除存在入度的点及其出边,每次删除一个点可以获得其权值。 问最终能够获得的最大权值为多少。 思路: 考虑DAG:我们直接倒着拓扑序来选,即可将所有入度不为$0$的点选完。 若不为DAG,考虑$tarjan$求出强连通分量,分析可以发现:对于一个单独的强连通分 阅读全文
posted @ 2019-10-21 23:16 heyuhhh 阅读(120) 评论(0) 推荐(0) 编辑
摘要:"洛谷" 题意: 给出两个最大团的补图,现在要求增加一条边,使得最大最大团个数增加至少$1$。 思路: 我们求出团的补图,问题可以转换为:对于一个二分图,选择删掉一条边,能够增大其最大独立集的点集数。 然后做法就是考虑在最大流的残余网络上,对容量为$1$的边求强连通分量(包含源点、汇点)。 若存在一 阅读全文
posted @ 2019-10-21 23:11 heyuhhh 阅读(190) 评论(0) 推荐(0) 编辑
摘要:"传送门" C. Ivan the Fool and the Probability Theory 题意: 给出一个$n m$的方格,现在要给方格中的元素黑白染色,要求任一颜色最多有一个颜色相同的格子和它相邻。问多少种方案。 思路: 观察到若第一行含有两个相同的颜色相邻,那么之后所有格子的状态都可以 阅读全文
posted @ 2019-10-21 22:26 heyuhhh 阅读(423) 评论(2) 推荐(0) 编辑
摘要:Prince and Princess Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 2281 Accepted Submission(s): 阅读全文
posted @ 2019-02-23 11:32 heyuhhh 阅读(189) 评论(0) 推荐(0) 编辑
摘要:King's Quest 题目链接:http://poj.org/problem?id=1904 Description: Once upon a time there lived a king and he had N sons. And there were N beautiful girls 阅读全文
posted @ 2019-02-23 11:18 heyuhhh 阅读(187) 评论(0) 推荐(0) 编辑
摘要:Strongly connected Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4765 Accepted Submission(s): 1 阅读全文
posted @ 2019-02-20 21:49 heyuhhh 阅读(178) 评论(0) 推荐(0) 编辑
摘要:Network of Schools 题目链接:http://poj.org/problem?id=1236 Description: A number of schools are connected to a computer network. Agreements have been deve 阅读全文
posted @ 2019-02-17 22:32 heyuhhh 阅读(102) 评论(0) 推荐(0) 编辑
摘要:1051: [HAOI2006]受欢迎的牛 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 8161 Solved: 4460 Description 每一头牛的愿望就是变成一头最受欢迎的牛。现在有N头牛,给你M对整数(A,B),表示牛A认为牛B受欢迎。 阅读全文
posted @ 2018-12-01 00:10 heyuhhh 阅读(366) 评论(1) 推荐(0) 编辑