D - Friend Suggestions Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 400400

問題文

とあるSNSに、人 11 、人 22\cdots、人 NN が登録しています。

この NN 人の間には、 MM 組の「友達関係」と、 KK 組の「ブロック関係」が存在します。

i=1,2,,Mi = 1, 2, \cdots, M について、人 AiA_i と人 BiB_i は友達関係にあります。この関係は双方向的です。

i=1,2,,Ki = 1, 2, \cdots, K について、人 CiC_i と人 DiD_i はブロック関係にあります。この関係は双方向的です。

以下の 44 つの条件が満たされるとき、人 aa は人 bb の「友達候補」であると定義します。

  • aba \neq b である。
  • aa と人 bb はブロック関係に無い。
  • aa と人 bb は友達関係に無い。
  • 11 以上 NN 以下の整数から成るある数列 c0,c1,c2,,cLc_0, c_1, c_2, \cdots, c_L が存在し、c0=ac_0 = a であり、 cL=bc_L = b であり、 i=0,1,,L1i = 0, 1, \cdots, L - 1 について、人 cic_i と人 ci+1c_{i+1} は友達関係にある。

i=1,2,...Ni = 1, 2, ... N について、友達候補の数を答えてください。

制約

  • 入力は全て整数
  • 2N1052 ≤ N ≤ 10^5
  • 0M1050 \leq M \leq 10^5
  • 0K1050 \leq K \leq 10^5
  • 1Ai,BiN1 \leq A_i, B_i \leq N
  • AiBiA_i \neq B_i
  • 1Ci,DiN1 \leq C_i, D_i \leq N
  • CiDiC_i \neq D_i
  • (Ai,Bi)(Aj,Bj)(ij)(A_i, B_i) \neq (A_j, B_j) (i \neq j)
  • (Ai,Bi)(Bj,Aj)(A_i, B_i) \neq (B_j, A_j)
  • (Ci,Di)(Cj,Dj)(ij)(C_i, D_i) \neq (C_j, D_j) (i \neq j)
  • (Ci,Di)(Dj,Cj)(C_i, D_i) \neq (D_j, C_j)
  • (Ai,Bi)(Cj,Dj)(A_i, B_i) \neq (C_j, D_j)
  • (Ai,Bi)(Dj,Cj)(A_i, B_i) \neq (D_j, C_j)

入力

入力は以下の形式で標準入力から与えられる。

NN MM KK
A1A_1 B1B_1
\vdots
AMA_M BMB_M
C1C_1 D1D_1
\vdots
CKC_K DKD_K

出力

答えを空白区切りで順に出力せよ。


入力例 1Copy

Copy
4 4 1
2 1
1 3
3 2
3 4
4 1

出力例 1Copy

Copy
0 1 0 1

22 と人 33 は友達関係にあり, 人 33 と人 44 は友達関係にあり, かつ人 22 と人 44 は友達関係にもブロック関係にもありませんから, 人 44 は人 22の友達候補です。

11 と人 33 は人 22 の友達候補ではありませんから, 人 22 の友達候補は 11 人です。


入力例 2Copy

Copy
5 10 0
1 2
1 3
1 4
1 5
3 2
2 4
2 5
4 3
5 3
4 5

出力例 2Copy

Copy
0 0 0 0 0

全ての人は他の全ての人と友達関係にありますが、友達候補は 00 人です。


入力例 3Copy

Copy
10 9 3
10 1
6 7
8 2
2 5
8 4
7 3
10 9
6 4
5 8
2 6
7 5
3 1

出力例 3Copy

Copy
1 3 5 4 3 3 3 3 1 0

Score : 400400 points

Problem Statement

An SNS has NN users - User 11, User 22, \cdots, User NN.

Between these NN users, there are some relationships - MM friendships and KK blockships.

For each i=1,2,,Mi = 1, 2, \cdots, M, there is a bidirectional friendship between User AiA_i and User BiB_i.

For each i=1,2,,Ki = 1, 2, \cdots, K, there is a bidirectional blockship between User CiC_i and User DiD_i.

We define User aa to be a friend candidate for User bb when all of the following four conditions are satisfied:

  • aba \neq b.
  • There is not a friendship between User aa and User bb.
  • There is not a blockship between User aa and User bb.
  • There exists a sequence c0,c1,c2,,cLc_0, c_1, c_2, \cdots, c_L consisting of integers between 11 and NN (inclusive) such that c0=ac_0 = a, cL=bc_L = b, and there is a friendship between User cic_i and ci+1c_{i+1} for each i=0,1,,L1i = 0, 1, \cdots, L - 1.

For each user i=1,2,...Ni = 1, 2, ... N, how many friend candidates does it have?

Constraints

  • All values in input are integers.
  • 2N1052 ≤ N ≤ 10^5
  • 0M1050 \leq M \leq 10^5
  • 0K1050 \leq K \leq 10^5
  • 1Ai,BiN1 \leq A_i, B_i \leq N
  • AiBiA_i \neq B_i
  • 1Ci,DiN1 \leq C_i, D_i \leq N
  • CiDiC_i \neq D_i
  • (Ai,Bi)(Aj,Bj)(ij)(A_i, B_i) \neq (A_j, B_j) (i \neq j)
  • (Ai,Bi)(Bj,Aj)(A_i, B_i) \neq (B_j, A_j)
  • (Ci,Di)(Cj,Dj)(ij)(C_i, D_i) \neq (C_j, D_j) (i \neq j)
  • (Ci,Di)(Dj,Cj)(C_i, D_i) \neq (D_j, C_j)
  • (Ai,Bi)(Cj,Dj)(A_i, B_i) \neq (C_j, D_j)
  • (Ai,Bi)(Dj,Cj)(A_i, B_i) \neq (D_j, C_j)

Input

Input is given from Standard Input in the following format:

NN MM KK
A1A_1 B1B_1
\vdots
AMA_M BMB_M
C1C_1 D1D_1
\vdots
CKC_K DKD_K

Output

Print the answers in order, with space in between.


Sample Input 1Copy

Copy
4 4 1
2 1
1 3
3 2
3 4
4 1

Sample Output 1Copy

Copy
0 1 0 1

There is a friendship between User 22 and 33, and between 33 and 44. Also, there is no friendship or blockship between User 22 and 44. Thus, User 44 is a friend candidate for User 22.

However, neither User 11 or 33 is a friend candidate for User 22, so User 22 has one friend candidate.


Sample Input 2Copy

Copy
5 10 0
1 2
1 3
1 4
1 5
3 2
2 4
2 5
4 3
5 3
4 5

Sample Output 2Copy

Copy
0 0 0 0 0

Everyone is a friend of everyone else and has no friend candidate.


Sample Input 3Copy

Copy
10 9 3
10 1
6 7
8 2
2 5
8 4
7 3
10 9
6 4
5 8
2 6
7 5
3 1

Sample Output 3Copy

Copy
1 3 5 4 3 3 3 3 1 0


2025-04-17 (Thu)
19:07:58 +00:00