목차

[1차] 뉴스 클러스터링

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