結果

問題 No.1390 Get together
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-11-25 10:46:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 116,284 KB
最終ジャッジ日時 2024-06-28 01:36:46
合計ジャッジ時間 12,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,988 KB
testcase_01 AC 46 ms
54,464 KB
testcase_02 AC 42 ms
55,280 KB
testcase_03 AC 103 ms
77,640 KB
testcase_04 AC 99 ms
77,540 KB
testcase_05 AC 102 ms
77,520 KB
testcase_06 AC 96 ms
77,288 KB
testcase_07 AC 102 ms
77,728 KB
testcase_08 AC 96 ms
77,420 KB
testcase_09 AC 101 ms
77,672 KB
testcase_10 AC 43 ms
54,248 KB
testcase_11 AC 43 ms
55,620 KB
testcase_12 AC 42 ms
55,280 KB
testcase_13 AC 42 ms
54,040 KB
testcase_14 AC 43 ms
54,684 KB
testcase_15 AC 42 ms
54,876 KB
testcase_16 AC 348 ms
109,220 KB
testcase_17 AC 368 ms
112,520 KB
testcase_18 AC 332 ms
114,104 KB
testcase_19 AC 564 ms
112,492 KB
testcase_20 AC 518 ms
109,084 KB
testcase_21 AC 523 ms
109,188 KB
testcase_22 AC 476 ms
114,840 KB
testcase_23 AC 504 ms
116,284 KB
testcase_24 AC 492 ms
116,068 KB
testcase_25 AC 558 ms
112,748 KB
testcase_26 AC 534 ms
112,772 KB
testcase_27 AC 549 ms
112,836 KB
testcase_28 AC 543 ms
112,532 KB
testcase_29 AC 544 ms
112,600 KB
testcase_30 AC 553 ms
112,600 KB
testcase_31 AC 551 ms
112,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

boxused = [-1]*(m+1)
boxused[0]= 0
colorused = [-1]*(n+1)
colorused[0] = 0

from collections import deque

cnt = 0
for i in range(m+1):
  if boxused[i] == -1:
    d = deque()
    d.append(i)
    boxused[i] = 0
    while d:
      v = d.popleft()
      for x in box[v]:
        if colorused[x] == -1:
          colorused[x] = 0
          for y in color[x]:
            if boxused[y] == -1:
              boxused[y] = 0
              d.append(y)
              cnt += 1

print(cnt)
0