結果
問題 | No.2563 色ごとのグループ |
ユーザー | 👑 AngrySadEight |
提出日時 | 2023-11-24 00:36:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 883 bytes |
コンパイル時間 | 471 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 95,360 KB |
最終ジャッジ日時 | 2024-09-26 16:34:04 |
合計ジャッジ時間 | 7,362 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
59,776 KB |
testcase_01 | AC | 38 ms
53,504 KB |
testcase_02 | AC | 43 ms
53,760 KB |
testcase_03 | AC | 40 ms
53,632 KB |
testcase_04 | AC | 42 ms
54,016 KB |
testcase_05 | AC | 40 ms
53,760 KB |
testcase_06 | AC | 40 ms
53,888 KB |
testcase_07 | AC | 40 ms
53,492 KB |
testcase_08 | AC | 40 ms
54,272 KB |
testcase_09 | AC | 46 ms
60,288 KB |
testcase_10 | AC | 40 ms
53,632 KB |
testcase_11 | AC | 47 ms
60,672 KB |
testcase_12 | AC | 51 ms
64,512 KB |
testcase_13 | AC | 45 ms
59,904 KB |
testcase_14 | AC | 71 ms
71,552 KB |
testcase_15 | AC | 70 ms
70,656 KB |
testcase_16 | AC | 72 ms
71,936 KB |
testcase_17 | AC | 71 ms
71,168 KB |
testcase_18 | AC | 57 ms
67,584 KB |
testcase_19 | AC | 196 ms
77,476 KB |
testcase_20 | AC | 343 ms
78,244 KB |
testcase_21 | AC | 250 ms
78,464 KB |
testcase_22 | AC | 263 ms
78,208 KB |
testcase_23 | AC | 783 ms
79,744 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
from collections import deque N, M = map(int, input().split()) C = list(map(int, input().split())) graph = [[] for _ in range(N)] for i in range(M): u, v = map(int, input().split()) u -= 1 v -= 1 for i in range(M): if C[u] == C[v]: graph[u].append(v) graph[v].append(u) ans = 0 Clist = [[] for _ in range(N + 1)] for i in range(N): Clist[C[i]].append(i) isvisited = [False for _ in range(N)] dq = deque() for i in range(1, N + 1): comp = 0 for v in Clist[i]: if isvisited[v]: continue comp += 1 isvisited[v] = True dq.append(v) while len(dq): p = dq.popleft() for x in graph[p]: if isvisited[x]: continue isvisited[x] = True dq.append(x) ans += max(0, comp - 1) print(ans)