1013. Battle Over Cities (25)

简介: //连通分量数量 - 1//如何求连通分量:#include #include #include #include using namespace std;int e[1000][1000], n;bool ...
//连通分量数量 - 1
//如何求连通分量:
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
int e[1000][1000], n;
bool visited[1000];

void dfs(int index){
    visited[index] = true;
    for (int i = 1; i <= n; i++) {
        if(!visited[i] && e[index][i] == 1)
            dfs(i);
    }
}

int main(){
    int  m, k;
    fill(e[0], e[999] + 1000, 0);
    scanf("%d%d%d", &n, &m, &k);
    for (int i = 0; i < m; i++) {
        int a, b;
        scanf("%d%d", &a, &b);
        e[a][b] = e[b][a] = 1;
    }

    for (int i = 0; i < k; i++) {
        int t;
        fill(visited, visited + 1000, false);//每个点都相当于一个新问题 所以需要重置
        scanf("%d", &t);
        int cnt = 0;
        visited[t] = true;//标记为已失去
        for (int j = 1; j <= n; j++) {//城市编号1 - n-1
            if(!visited[j]){//如果该点没有被访问过 进行一次深度优先搜索 此处存在几个未被访问的点 存在几个连通分量
                dfs(j);
                cnt++;
            }
        }
        printf("%d\n", cnt - 1);
    }

    return 0;
}


目录
相关文章
|
8月前
【随想】每日两题Day.6
【随想】每日两题
35 0
|
8月前
【随想】每日两题Day.18
【随想】每日两题Day.18
47 0
|
8月前
【随想】每日两题Day.8
【随想】每日两题
41 0
|
8月前
【随想】每日两题Day.17
【随想】每日两题Day.17
46 0
|
8月前
|
索引
【随想】每日两题Day.7
【随想】每日两题
35 0
|
8月前
|
机器学习/深度学习 NoSQL Shell
【随想】每日两题Day.13
【随想】每日两题Day.13
35 0
|
8月前
【随想】每日两题Day.22
【随想】每日两题Day.22
43 0
|
8月前
【随想】每日两题Day.12
【随想】每日两题Day.12
34 0
|
8月前
|
算法
【随想】每日两题Day.1
【随想】每日两题Day.1
44 0
|
8月前
【随想】每日两题Day.4
【随想】每日两题Day.4
41 0