importcollectionsimportsysfromtypingimportListdefsolution(clothes:List[str])->int:answer=1count_map=collections.defaultdict(int)forclothinclothes:# 같은 이름을 가진 의상은 존재하지 않으니 [0]은 사용할 필요가 없음
count_map[cloth.split()[1]]+=1# for k in count_map:
# if count_map[k] > 1:
# answer += count_map[k]
# continue
#
# if len(count_map) != 1:
# answer += len(clothes)
forkincount_map:# count_map[k] 종류를 안 입을 수 있으니 그 경우를 +1
answer*=count_map[k]+1# 아무것도 안 입는 알몸인 경우를 -1
returnanswer-1N=int(sys.stdin.readline().rstrip())for_inrange(N):array=[]n=int(sys.stdin.readline().rstrip())for_inrange(n):array.append(sys.stdin.readline().rstrip())print(solution(array))
importcollectionsimportsysfromtypingimportListdefsolution(clothes:List[str])->int:answer=0count_map=collections.defaultdict(int)forclothinclothes:# 같은 이름을 가진 의상은 존재하지 않으니 [0]은 사용할 필요가 없음
count_map[cloth.split()[1]]+=1forkincount_map:ifcount_map[k]>1:answer+=count_map[k]continueiflen(count_map)!=1:answer+=len(clothes)returnanswerN=int(sys.stdin.readline().rstrip())for_inrange(N):array=[]n=int(sys.stdin.readline().rstrip())for_inrange(n):array.append(sys.stdin.readline().rstrip())print(solution(array))
Leave a comment