bzoj1098题解

【题意分析】

  给你一张无向图,求其补图的联通块数及各个联通块大小。

【解题思路】

  暴搜!

  然而n2会T怎么办?

  仔细观察发现m远小于n2,也就是说这是一张极其稠密的补图。

  这时就要用到黑科技了:floodfill

  用邻接表维护原图的边,用链表维护当前剩余可选点,每次从队首出发从链表里找补图的边,把这些边对应的点入队并从链表里删去。

  这样,我们构造一种最坏的情况来卡这个算法:

  假设前m/n个点每个点都只和一个点不相连,这样对于每个点都要遍历链表中的所有点,此时复杂度是O((m/n)*n)=O(m)。

  因为前面已经把m条边都分配完了,接下来的第一个点就O(n)把链表清空了。之后的点全都是O(1)发现链表已被清空。

  这样总复杂度就是O(m+n)了。

【参考代码】

 1 #include <bits/stdc++.h>
 2 #define range(i,c,o) for(register int i=(c);i<(o);++i)
 3 #define dange(i,c,o) for(register int i=(c);i>(o);--i)
 4 #define forin(i,t,p) for(t::        iterator i=p. begin();i!=p. end();++i)
 5 #define dorin(i,t,p) for(t::reverse_iterator i=p.rbegin();i!=p.rend();++i)
 6 using namespace std;
 7
 8 #define __debug
 9 #ifdef __debug
10     #define Function(type) type
11     #define Procedure      void
12 #else
13     #define Function(type) __attribute__((optimize("-O2"))) inline type
14     #define Procedure      __attribute__((optimize("-O2"))) inline void
15 #endif
16
17 #ifdef __int128_t
18     typedef __int128_t integer;
19 #else
20     typedef long long integer;
21 #endif
22
23 //quick_io {
24 Function(integer) getint()
25 {
26     char c=getchar(); for(;!isdigit(c)&&c!=‘-‘;c=getchar());
27     short s=1; for(;c==‘-‘;c=getchar()) s*=-1; integer r=0;
28     for(;isdigit(c);c=getchar()) (r*=10)+=c-‘0‘; return s*r;
29 }
30 //} quick_io
31
32 static int n=getint();
33
34 //list {
35 int suc[100005],pre[100005];
36 Procedure clear()
37 {
38     range(i,1,n+1) suc[i]=i+1,pre[i]=i-1;
39     suc[0]=1,pre[n+1]=n;
40 }
41 Procedure erase(const int&x)
42 {
43     pre[suc[x]]=pre[x],suc[pre[x]]=suc[x];
44 }
45 //} list
46
47 bool tag[100005]={0},vis[100005]={0};
48 vector<int> edg[100005]; queue<int> que;
49 Function(int) floodfill(const int&rt)
50 {
51     int ret=0; erase(rt);
52     for(que.push(rt);!que.empty();que.pop())
53     {
54         int fr=que.front(); vis[fr]=1,++ret;
55         forin(i,vector<int>,edg[fr]) tag[*i]=1;
56         for(int i=suc[0];i<=n;i=suc[i])
57         {
58             if(!tag[i]) erase(i),que.push(i);
59         }
60         forin(i,vector<int>,edg[fr]) tag[*i]=0;
61     }
62     return ret;
63 }
64
65 int rec[100005];
66 int main()
67 {
68     for(int m=getint();m--;)
69     {
70         int u=getint(),v=getint();
71         edg[u].push_back(v),edg[v].push_back(u);
72     }
73     clear(); int cnt=0;
74     range(i,1,n+1) if(!vis[i]) rec[cnt++]=floodfill(i);
75     sort(rec,rec+cnt),printf("%d\n",cnt);
76     range(i,0,cnt) printf("%d ",rec[i]);
77     return putchar(‘\n‘),0;
78 }

时间: 2025-01-05 09:01:15

bzoj1098题解的相关文章

Educational Codeforces Round 36 (Rated for Div. 2) 题解

Educational Codeforces Round 36 (Rated for Div. 2) 题目的质量很不错(不看题解做不出来,笑 Codeforces 920C 题意 给定一个\(1\)到\(n\)组成的数组,只可以交换某些相邻的位置,问是否可以将数组调整为升序的 解题思路 首先如果每个数都能通过交换到它应该到的位置,那么就可以调整为升序的. 但实际上交换是对称的,如果应该在的位置在当前位置前方的数都交换完成,那么整体就是排好序的,因为不可能所有不在相应位置的数都在相应位置的后方.

洛谷 P1079 Vigen&#232;re 密码 题解

此文为博主原创题解,转载时请通知博主,并把原文链接放在正文醒目位置. 题目链接:https://www.luogu.org/problem/show?pid=1079 题目描述 16 世纪法国外交家 Blaise de Vigenère 设计了一种多表密码加密算法――Vigenère 密 码.Vigenère 密码的加密解密算法简单易用,且破译难度比较高,曾在美国南北战争中为 南军所广泛使用. 在密码学中,我们称需要加密的信息为明文,用 M 表示:称加密后的信息为密文,用 C 表示:而密钥是一种

8.8联考题解

今天的T1让我怀疑我是不是在做奥赛题--这考的是什么知识点啊这个,会不会用绝对值函数? Evensgn 的债务 时间限制: 1 Sec  内存限制: 128 MB 题目描述 Evensgn 有一群好朋友,他们经常互相借钱.假如说有三个好朋友A,B,C.A 欠 B 20 元,B 欠 C 20 元,总债务规模为 20+20=40 元.Evensgn 是个追求简约的人,他觉得这样的债务太繁杂了.他认为,上面的债务可以完全等价为 A 欠C20 元,B 既不欠别人,别人也不欠他.这样总债务规模就压缩到了 

POJ 2533 - Longest Ordered Subsequence(最长上升子序列) 题解

此文为博主原创题解,转载时请通知博主,并把原文链接放在正文醒目位置. 题目链接:http://poj.org/problem?id=2533 Description A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK)

(leetcode题解)Pascal&#39;s Triangle

Pascal's Triangle  Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 题意实现一个杨辉三角. 这道题只要注意了边界条件应该很好实现出来,C++实现如下 vector<vector<int>> generate(int

2017ZZUACM省赛选拔试题部分题解----谨以纪念我这卡线滚粗的美好经历

写在前面: 其实心里有些小小的不爽又有点小小的舒畅,为啥捏?不爽当然是因为没被选拔上啦,舒畅捏则是因为没被选拔上反而让自己警醒,学长也提点很多很多."沉下去,然后一战成名"学长如是对我说,我很开心.其实这完全算不算是题解,只是我个人的一些小想法而已.而且到现在还有一题不会...让自己长点记性吧. 题目 A :聪明的田鼠 Time Limit: 1 Sec Memory Limit: 128 MB Description 田鼠MIUMIU来到了一片农田,农田可以看成是一个M*N个方格的矩

LeetCode-001题解

此题目摘自LeetCode001 Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2.

leetcode题解: Next Permutation

最近还一直在刷leetcode,当然,更多时候只是将题解写在自己的电脑上,没有分享出来.偶尔想起来的时候,就写出来. public class Solution { public void nextPermutation(int[] nums) { if(nums==null||nums.length<=1) return; nextPermutationHelp( nums,0,nums.length-1); } public void nextPermutationHelp(int []nu

HDU 5014 Number Sequence(2014 ACM/ICPC Asia Regional Xi&#39;an Online) 题解

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5014 Number Sequence Problem Description There is a special number sequence which has n+1 integers. For each number in sequence, we have two rules: ● ai ∈ [0,n] ● ai ≠ aj( i ≠ j ) For sequence a and sequ