본문 바로가기
Coding Test/Programmers

[Programmers] (2022 KAKAO BLIND RECRUITMENT) Lv 2. 주차 요금 계산

by song.ift 2023. 2. 22.

https://school.programmers.co.kr/learn/courses/30/lessons/92341

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

function solution(fees, records) {
    records = records.reduce(
        (acc, el) => {
            const record = el.split(" ");
            acc[record[2]].push(record[0] + " " + record[1]);
            return acc;
        },
        { IN: [], OUT: [] }
    );

    parking = records.IN.reduce((acc, el) => {
        const inRecord = el.split(" ");
        const outRecords = records.OUT.reduce(
            (out, e) => {
                const outRecord = e.split(" ");
                if (
                    outRecord[1] === inRecord[1] &&
                    outRecord[0] > inRecord[0] &&
                    out.length <= 1
                )
                    out.unshift(outRecord[0]);
                return out;
            },
            ["23:59"]
        );

        inTime = inRecord[0].split(":");
        outTime = outRecords[0].split(":");

        acc[parseInt(inRecord[1])] =
            (isNaN(acc[parseInt(inRecord[1])])
                ? 0
                : acc[parseInt(inRecord[1])]) +
            (parseInt(outTime[0]) * 60 + parseInt(outTime[1])) -
            (parseInt(inTime[0]) * 60 + parseInt(inTime[1]));

        return acc;
    }, {});

    return Object.values(parking).map((el) =>
        fees[0] < el
            ? fees[1] + Math.ceil((el - fees[0]) / fees[2]) * fees[3]
            : fees[1]
    );
}

GitHub : https://github.com/developeSHG/Algorithm-Baekjoon_Programmers/tree/main/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4/lv2/92341.%E2%80%85%EC%A3%BC%EC%B0%A8%E2%80%85%EC%9A%94%EA%B8%88%E2%80%85%EA%B3%84%EC%82%B0

 

GitHub - developeSHG/Algorithm-Baekjoon_Programmers: 백준 and 프로그래머스 소스코드

백준 and 프로그래머스 소스코드. Contribute to developeSHG/Algorithm-Baekjoon_Programmers development by creating an account on GitHub.

github.com

 

댓글