본문 바로가기
알고리즘 문제 풀이/그리디

1449 수리공 항승

by 가나무마 2021. 10. 29.
728x90

본 알고리즘 풀이는 Routine Study에서 진행하고 있습니다.
저를 포함한 구성원이 대부분 초보이므로, 원하시는분은 언제라도 들어오셔도 좋습니다.

문의는 댓글 바람.

문제 출처

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

class Main {
    public static void main(String[] args) throws IOException {
        int sumOfTape = 0;
        BufferedReader bfr = new BufferedReader(new InputStreamReader(System.in));
        String[] nl = bfr.readLine().split(" ");

        // 테이프의 길이(자연수)
        int n = Integer.parseInt(nl[0]);
        int l = Integer.parseInt(nl[1]);
        String[] pipeHole = bfr.readLine().split(" ");
        int[] pipeHolePoint = new int[pipeHole.length];
        for (int i = 0; i < n; i++) {
            pipeHolePoint[i] = Integer.parseInt(pipeHole[i]);
        }
        Arrays.sort(pipeHolePoint);

        int startPoint = pipeHolePoint[0];
        boolean isTaped = false;
        for (int i = 1; i < n; i++) {
            if (pipeHolePoint[i] - startPoint >= l) {
                sumOfTape++;
                startPoint = pipeHolePoint[i];
                isTaped = true;
            }
            isTaped = false;
        }

        if (!isTaped) sumOfTape++;
        System.out.println(sumOfTape);
    }
}

 

 

728x90
반응형

'알고리즘 문제 풀이 > 그리디' 카테고리의 다른 글

17509 And the Winner Is... Ourselves!  (0) 2021.10.29
4796 캠핑  (0) 2021.10.29
프로그래머스 - 큰 수 만들기  (0) 2021.08.20
942. DI String Match  (0) 2021.08.11
561. Array Partition I  (0) 2021.07.25