PTA紅色警報 並查集 BFS求連通分量

2021-10-02 09:33:22 字數 2564 閱讀 2331

戰爭中保持各個城市間的連通性非常重要。本題要求你編寫乙個報警程式,當失去乙個城市導致國家被**為多個無法連通的區域時,就發出紅色警報。注意:若該國本來就不完全連通,是**的k個區域,而失去乙個城市並不改變其他城市之間的連通性,則不要發出警報。

輸入在第一行給出兩個整數n(0 < n ≤ 500)和m(≤ 5000),分別為城市個數(於是預設城市從0到n-1編號)和連線兩城市的通路條數。隨後m行,每行給出一條通路所連線的兩個城市的編號,其間以1個空格分隔。在城市資訊之後給出被攻占的資訊,即乙個正整數k和隨後的k個被攻占的城市的編號。

注意:輸入保證給出的被攻占的城市編號都是合法的且無重複,但並不保證給出的通路沒有重複。

對每個被攻占的城市,如果它會改變整個國家的連通性,則輸出red alert: city k is lost!,其中k是該城市的編號;否則只輸出city k is lost.即可。如果該國失去了最後乙個城市,則增加一行輸出game over.

5 4

0 11 3

3 00 4

51 2 0 4 3

city 1 is lost.

city 2 is lost.

red alert: city 0 is lost!

city 4 is lost.

city 3 is lost.

game over.

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

using

namespace std;

typedef

long

long ll;

#define n 505

int edge[n]

[n],vis[n]

;int fa[n]

,lost[n]

;int

find

(int x)

intunion

(int x,

int y)

intcount

(int n)

void

init()

intmain()

int t,cnt0 =

count

(n);

cin >> t;

while

(t--

)int cnt =

count

(n);

if(cnt==cnt0+

1||cnt<=cnt0)

printf

("city %d is lost.\n"

,x);

else

printf

("red alert: city %d is lost!\n"

,x);

cnt0 = cnt;}if

(cnt0==n)

printf

("game over.\n");

return0;

}

使用並查集統計連通分量個數時將失守的城市也統計進去了,所以連通分量個數應該是遞增的,最後到等於n結束。

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

using

namespace std;

typedef

long

long ll;

#define n 505

int edge[n]

[n],vis[n]

,lost[n]

,n;queue<

int> qu;

void

bfs()}

}}intmain()

for(

int i=

0;icin >> t;

while

(t--)}

if(cnt<=precnt)

printf

("city %d is lost.\n"

,x);

else

printf

("red alert: city %d is lost!\n"

,x);

precnt = cnt;

// cout << cnt << endl;}if

(precnt==0)

printf

("game over.\n");

return0;

}

使用bfs統計聯通分量時,沒有計算失守的城市,若本次連通分量個數大於上一次的則要紅色警報,否則只需要列印lost即可。

紅色警報(並查集)

7 9 紅色警報 25 分 戰爭中保持各個城市間的連通性非常重要。本題要求你編寫乙個報警程式,當失去乙個城市導致國家被 為多個無法連通的區域時,就發出紅色警報。注意 若該國本來就不完全連通,是 的k個區域,而失去乙個城市並不改變其他城市之間的連通性,則不要發出警報。輸入在第一行給出兩個整數n 0 n...

紅色警報 並查集

戰爭中保持各個城市間的連通性非常重要。本題要求你編寫乙個報警程式,當失去乙個城市導致國家被 為多個無法連通的區域時,就發出紅色警報。注意 若該國本來就不完全連通,是 的k個區域,而失去乙個城市並不改變其他城市之間的連通性,則不要發出警報。輸入格式 輸入在第一行給出兩個整數n 0 n 500 和m 5...

紅色警報(並查集的應用)

戰爭中保持各個城市間的連通性非常重要。本題要求你編寫乙個報警程式,當失去乙個城市導致國家被 為多個無法連通的區域時,就發出紅色警報。注意 若該國本來就不完全連通,是 的k個區域,而失去乙個城市並不改變其他城市之間的連通性,則不要發出警報。輸入在第一行給出兩個整數n 0 n 500 和m 5000 分...