ps | |
---|---|
링크 | programmers.co.kr/… |
출처 | 프로그래머스 |
문제 번호 | 17677 |
문제명 | [1차] 뉴스 클러스터링 |
레벨 | Level 2 |
분류 |
기초 |
시간복잡도 | O(n+m) |
인풋사이즈 | n<=1000, m<=1000 |
사용한 언어 | Python |
해결날짜 | 2022/01/09 |
"""Solution code for "Programmers 17677. [1차] 뉴스 클러스터링".
- Problem link: https://programmers.co.kr/learn/courses/30/lessons/17677
- Solution link: http://www.teferi.net/ps/problems/programmers/17677
"""
import collections
MULTIPLIER = 65536
def solution(str1, str2):
str1, str2 = str1.upper(), str2.upper()
counter1 = collections.Counter(
x + y for x, y in zip(str1, str1[1:]) if (x + y).isalpha())
counter2 = collections.Counter(
x + y for x, y in zip(str2, str2[1:]) if (x + y).isalpha())
intersection = sum((counter1 & counter2).values())
union = sum((counter1 | counter2).values())
return MULTIPLIER if union == 0 else MULTIPLIER * intersection // union