結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 100 ms
77,696 KB
testcase_04 AC 99 ms
77,696 KB
testcase_05 AC 106 ms
77,696 KB
testcase_06 AC 97 ms
77,952 KB
testcase_07 AC 105 ms
77,824 KB
testcase_08 AC 98 ms
77,568 KB
testcase_09 AC 102 ms
77,952 KB
testcase_10 AC 43 ms
53,504 KB
testcase_11 AC 42 ms
53,632 KB
testcase_12 AC 42 ms
53,888 KB
testcase_13 AC 42 ms
53,888 KB
testcase_14 AC 42 ms
53,504 KB
testcase_15 AC 41 ms
53,376 KB
testcase_16 AC 319 ms
108,612 KB
testcase_17 AC 337 ms
111,268 KB
testcase_18 AC 295 ms
114,156 KB
testcase_19 AC 502 ms
112,256 KB
testcase_20 AC 459 ms
109,312 KB
testcase_21 AC 471 ms
108,928 KB
testcase_22 AC 451 ms
114,816 KB
testcase_23 AC 467 ms
116,404 KB
testcase_24 AC 456 ms
116,168 KB
testcase_25 AC 518 ms
112,512 KB
testcase_26 AC 491 ms
112,640 KB
testcase_27 AC 505 ms
112,768 KB
testcase_28 AC 499 ms
112,640 KB
testcase_29 AC 504 ms
112,640 KB
testcase_30 AC 499 ms
112,768 KB
testcase_31 AC 524 ms
112,896 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