Bzoj 1015: [JSOI2008] Star Wars Starwar (and collection)

Source: Internet
Author: User

And check set offline to engage ....

------------------------------------------------------------------------------------

#include <cstdio>#include <cstring>#include <algorithm>#include <vector>#include <stack>#include <iostream> #define REP (i, n) for (int i = 0; i < n; ++i)#define CLR (x, C) memset (x, C, sizeof (x))using namespace std;const int MAXN = INT (4e5) + 5;int p[MAXN];int n;int find (int x) {return x = = p[x]? x:p[x] = find (p[x]);}stack< int > S;vector< int > ans;vector< int > g[MAXN];bool vis[MAXN];bool b[MAXN];int tot = 0;void init () {Rep (i, N)p[i] = i, g[i].clear ();CLR (VIS, 0);CLR (B, 0);ans.clear ();}void Unite (int x) {tot++;Rep (i, g[x].size ()) {int t = g[x [i];if (! vis[T]) continue;int a = find (x), B = Find (t);if (A! = b)tot--, p[a] = b;}vis[x] = true;}int main () {int m;cin >> n >> m;init ();While (m--) {int u, v;scanf ("%d%d", &u, &v);g[u].push_back (v);g[v].push_back (u);}cin >> m;While (m--) {int t;scanf ("%d", &t);S.push (t);b[T] = true;}Rep (i, N)if (! b[i]) unite (i);While (! S.empty ()) {int x = S.top ();S.pop ();ans.push_back (tot);unite (x);}ans.push_back (tot);for (int i = Ans.size ()-1; I >= 0; i--)printf ("%d\n", ans[i]);return 0;}

------------------------------------------------------------------------------------

1015: [JSOI2008] Star Wars Starwar time limit: 3 Sec Memory Limit: 162 MB
Submit: 3375 Solved: 1489
[Submit] [Status] [Discuss] Description

Long ago, in a distant galaxy, a dark empire was leaning against its super-weapons rulers throughout the galaxy. One day, with an occasional chance, a rebel army destroyed the empire's super weapons and attacked almost all the planets in the galaxy. These planets are connected to each other directly or indirectly through special etheric tunnels. But it was not long, and soon the Empire re-created his super weapon. With the power of this super weapon, the Empire began to plan to destroy the rebel-occupied planet. As the planet continues to be destroyed, communication channels between the two planets are beginning to be unreliable. Now, the rebel leader gives you a mission: to give the connection of the etheric tunnels between the original two planets and the order of the planets in the Empire's attack, to find out the number of connected fast planets that the rebels occupy after each strike as quickly as possible. (If two planets can be connected directly or indirectly through existing etheric channels, the two planets are in the same connected block).

Input

The first line of the input file contains two integers, n (1 <= n <= 2M) and M (1 <= m <= 200,000), respectively, representing the number of planets and the number of etheric tunnels. Planets are numbered with 0~n-1 integers. The next M-line, each line consists of two integers X, Y, where (0<=x<>y

Output

The first line of the output file is the number of connected blocks at the beginning of the planet. The next n rows, one integer per line, indicate the number of connected blocks of the existing planet after the strike.

Sample Input8 13
0 1
1 6
6 5
5 0
0 6
1 2
2 3
3 4
4 5
7 1
9 |
7 6
3 6
5
1
6
3
5
7Sample Output1
1
1
2
3
3HINT

Source

Bzoj 1015: [JSOI2008] Star Wars Starwar (and collection)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.