結果

問題 No.1390 Get together
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-03-25 17:14:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 116,404 KB
最終ジャッジ日時 2024-05-05 07:48:39
合計ジャッジ時間 10,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 106 ms
77,696 KB
testcase_04 AC 101 ms
77,824 KB
testcase_05 AC 104 ms
77,824 KB
testcase_06 AC 97 ms
77,696 KB
testcase_07 AC 103 ms
77,952 KB
testcase_08 AC 98 ms
77,824 KB
testcase_09 AC 106 ms
77,952 KB
testcase_10 AC 42 ms
53,760 KB
testcase_11 AC 40 ms
53,504 KB
testcase_12 AC 44 ms
53,760 KB
testcase_13 AC 42 ms
53,760 KB
testcase_14 AC 39 ms
53,760 KB
testcase_15 AC 39 ms
53,632 KB
testcase_16 AC 309 ms
108,740 KB
testcase_17 AC 349 ms
111,640 KB
testcase_18 AC 310 ms
113,772 KB
testcase_19 AC 489 ms
112,128 KB
testcase_20 AC 464 ms
109,056 KB
testcase_21 AC 454 ms
109,184 KB
testcase_22 AC 434 ms
114,944 KB
testcase_23 AC 436 ms
116,404 KB
testcase_24 AC 442 ms
115,904 KB
testcase_25 AC 504 ms
112,768 KB
testcase_26 AC 487 ms
112,384 KB
testcase_27 AC 500 ms
112,640 KB
testcase_28 AC 501 ms
112,768 KB
testcase_29 AC 486 ms
112,768 KB
testcase_30 AC 486 ms
112,512 KB
testcase_31 AC 514 ms
113,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

from collections import deque

#色iのスライムがどの箱に入っているかを管理
color = [[] for _ in range(n+1)]
#箱iにどの色のスライムが入っているかを管理 
box = [[] for _ in range(m+1)]

for i in range(n):
  b, c = map(int, input().split())
  box[b].append(c)
  color[c].append(b)

#アクセス済みの箱を管理
distb = [-1] * (m+1)
distb[0] = 0

#アクセス済みの色を管理
distc = [-1] * (n+1)
distc[0] = 0

ans = 0

for i in range(m+1):
  if distb[i] == -1:
    distb[i] = 0
    d = deque()
    d.append(i)
    while d:
      v = d.popleft()
      for j in box[v]:
        if distc[j] != -1:
          continue
        distc[j] = 0 #距離はどうでもいいので、0とかにしちゃう
        for k in color[j]:
          if distb[k] != -1:
            continue
          distb[k] = 0 #距離はどうでもいいので、0とかにしちゃう
          d.append(k)
          ans += 1

print(ans)
0