[Luogu3420][POI2005]SKA-Piggy Banks

题目描述

Byteazar the Dragon has NNN piggy banks. Each piggy bank can either be opened with its corresponding key or smashed. Byteazar has put the keys in some of the piggy banks - he remembers which key has been placed in which piggy bank. Byteazar intends to buy a car and needs to gain access to all of the piggy banks. However, he wants to destroy as few of them as possible. Help Byteazar to determine how many piggy banks have to be smashed.

TaskWrite a programme which:

reads from the standard input the number of piggy banks and the deployment of their corresponding keys,finds the minimal number of piggy banks to be smashed in order to gain access to all of them,writes the outcome to the standard output.

Byteazar the Dragon拥有N个小猪存钱罐。每一个存钱罐能够用相应的钥匙打开或者被砸开。Byteazar已经将钥匙放入到一些存钱罐中。现在已知每个钥匙所在的存钱罐,Byteazar想要买一辆小汽车,而且需要打开所有的存钱罐。然而,他想要破坏尽量少的存钱罐,帮助Byteazar去决策最少要破坏多少存钱罐。

任务:

写一段程序包括:

读入存钱罐的数量以及相应的钥匙的位置,求出能打开所有存钱罐的情况下,需要破坏的存钱罐的最少数量并将其输出。

输入输出格式

输入格式:

The first line of the standard input contains a single integer NNN ( 1≤N≤1 000 0001le Nle 1 000 0001N1 000 000 ) - this is the number of piggy banks owned by the dragon. The piggy banks (as well as their corresponding keys) are numbered from 111 to NNN . Next, there are NNN lines: the (i+1)(i+1)(i+1) 'st line contains a single integer - the number of the piggy bank in which the iii 'th key has been placed.

第一行:包括一个整数N(1<=N<=1000000),这是Byteazar the Dragon拥有的存钱罐的数量。

存钱罐(包括它们对应的钥匙)从1到N编号。

接下来有N行:第i+1行包括一个整数x,表示第i个存钱罐对应的钥匙放置在了第x个存钱罐中。

输出格式:

The first and only line of the standard output should contain a single integer - the minimal number of piggy banks to be smashed in order to gain access to all of the piggy banks.

仅一行:包括一个整数,表示能打开所有存钱罐的情况下,需要破坏的存钱罐的最少数量。

输入输出样例

输入样例#1: 
4
2
1
2
4
输出样例#1: 
2




用并查集维护连通性,然后最后统计有多少个树根不一样的。




#include <iostream>
#include <cstdio>
using namespace std;
inline int read(){
    int res=0;char ch=getchar();
    while(!isdigit(ch)) ch=getchar();
    while(isdigit(ch)){res=(res<<1)+(res<<3)+(ch^48);ch=getchar();}
    return res;
}
int n;
int fa[1000005];
int Find(int x){return x==fa[x]?x:fa[x]=Find(fa[x]);}
bool vis[1000005];
int ans;

int main()
{
    n = read();
    for (int i = 1 ; i <= n ; i ++) fa[i] = i;
    for (int i = 1 ; i <= n ; i ++) 
    {
        int x = read();
        int fx = Find(x), fy = Find(i);
        if (fx != fy)
        {
            fa[fx] = fy;
        }
    }
    for (int i = 1 ; i <= n ; i ++)
    {
        int x = Find(i);
        if (!vis[x]) ans++;
        vis[x]=1;
    }
    return printf("%d
", ans), 0;
}
原文地址:https://www.cnblogs.com/BriMon/p/9382435.html