목차

점 고르기 2

ps
링크acmicpc.net/…
출처BOJ
문제 번호2190
문제명점 고르기 2
레벨골드 4
분류

브루트포스

시간복잡도O(n^3)
인풋사이즈n<=100
사용한 언어Python 3.11
제출기록31256KB / 120ms
최고기록120ms
해결날짜2023/09/25

풀이

코드

"""Solution code for "BOJ 2190. 점 고르기 2".

- Problem link: https://www.acmicpc.net/problem/2190
- Solution link: http://www.teferi.net/ps/problems/boj/2190

Tags: [brute force]
"""


def main():
    N, A, B = [int(x) for x in input().split()]
    coords = [[int(x) for x in input().split()] for _ in range(N)]

    answer = 0
    for left, _ in coords:
        for _, top in coords:
            count = sum(
                1
                for x, y in coords
                if left <= x <= left + A and top <= y <= top + B
            )
            answer = max(answer, count)

    print(answer)


if __name__ == '__main__':
    main()