結果
問題 | No.2563 色ごとのグループ |
ユーザー | YuuuT |
提出日時 | 2023-12-02 15:02:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 789 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 114,916 KB |
最終ジャッジ日時 | 2024-09-26 17:56:10 |
合計ジャッジ時間 | 5,245 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,528 KB |
testcase_01 | AC | 41 ms
54,400 KB |
testcase_02 | AC | 39 ms
54,400 KB |
testcase_03 | AC | 40 ms
54,400 KB |
testcase_04 | AC | 39 ms
54,912 KB |
testcase_05 | AC | 40 ms
54,272 KB |
testcase_06 | AC | 41 ms
54,656 KB |
testcase_07 | AC | 40 ms
54,528 KB |
testcase_08 | AC | 41 ms
54,656 KB |
testcase_09 | AC | 42 ms
55,424 KB |
testcase_10 | AC | 39 ms
54,656 KB |
testcase_11 | AC | 40 ms
54,784 KB |
testcase_12 | AC | 45 ms
54,400 KB |
testcase_13 | AC | 42 ms
54,656 KB |
testcase_14 | AC | 55 ms
66,176 KB |
testcase_15 | AC | 54 ms
67,200 KB |
testcase_16 | AC | 53 ms
67,072 KB |
testcase_17 | AC | 53 ms
66,688 KB |
testcase_18 | AC | 49 ms
64,512 KB |
testcase_19 | AC | 55 ms
69,376 KB |
testcase_20 | AC | 67 ms
78,812 KB |
testcase_21 | AC | 58 ms
74,240 KB |
testcase_22 | AC | 60 ms
72,960 KB |
testcase_23 | AC | 69 ms
77,312 KB |
testcase_24 | AC | 131 ms
98,304 KB |
testcase_25 | AC | 127 ms
99,840 KB |
testcase_26 | AC | 163 ms
103,052 KB |
testcase_27 | AC | 171 ms
113,960 KB |
testcase_28 | AC | 172 ms
105,792 KB |
testcase_29 | AC | 212 ms
114,688 KB |
testcase_30 | AC | 213 ms
114,816 KB |
testcase_31 | AC | 217 ms
114,660 KB |
testcase_32 | AC | 210 ms
114,916 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
import sys,math #if len(sys.argv)==2:sys.stdin=open(sys.argv[1]) from collections import defaultdict,deque from itertools import combinations,permutations,accumulate,product from bisect import bisect,bisect_left,bisect_right from heapq import heappop,heappush,heapify #from sortedcontainers import SortedList,SortedSet def input(): return sys.stdin.readline().rstrip() def ii(): return int(input()) def ms(): return map(int, input().split()) def li(): return list(map(int,input().split())) #//////////////////////////////////// N,M = ms() C = li() ans = 0 gro = defaultdict(list) for i in range(N): gro[C[i]].append(i+1) cnt = defaultdict(int) for _ in range(M): u,v = ms() if C[u-1]==C[v-1]: cnt[C[u-1]] += 1 for c in gro.keys(): ans += max(len(gro[c])-cnt[c]-1,0) print(ans)