結果

問題 No.1390 Get together
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-03-25 16:38:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 736 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 122,624 KB
最終ジャッジ日時 2024-11-27 02:36:08
合計ジャッジ時間 30,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 28 ms
70,400 KB
testcase_02 AC 27 ms
16,000 KB
testcase_03 AC 52 ms
74,368 KB
testcase_04 AC 42 ms
17,152 KB
testcase_05 AC 48 ms
73,216 KB
testcase_06 AC 46 ms
17,280 KB
testcase_07 AC 46 ms
73,216 KB
testcase_08 AC 44 ms
17,024 KB
testcase_09 AC 49 ms
12,160 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 TLE -
testcase_17 AC 1,082 ms
58,752 KB
testcase_18 TLE -
testcase_19 AC 1,258 ms
61,056 KB
testcase_20 AC 1,206 ms
59,264 KB
testcase_21 AC 1,212 ms
59,392 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,247 ms
61,056 KB
testcase_26 AC 1,211 ms
61,312 KB
testcase_27 AC 1,240 ms
61,184 KB
testcase_28 AC 1,236 ms
61,184 KB
testcase_29 AC 1,228 ms
61,056 KB
testcase_30 AC 1,201 ms
61,184 KB
testcase_31 AC 1,225 ms
122,624 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)

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

ans = 0

for i in range(m+1):
  if dist[i] == -1:
    dist[i] = 0
    d = deque()
    d.append(i)
    while d:
      v = d.popleft()
      for j in box[v]:
        for k in color[j]:
          if dist[k] != -1:
            continue
          dist[k] = dist[v] + 1
          d.append(k)
          ans += 1

print(ans)
0