Kakao 코테 주차 요금 계산

2 분 소요

문제 설명

주차장의 요금표와 차량이 들어오고(입차) 나간(출차) 기록이 주어졌을 때, 차량별로 주차 요금을 계산하려고 합니다. 아래는 하나의 예시를 나타냅니다.

  • 요금표
기본 시간(분) 기본 요금(원) 단위 시간(분) 단위 요금(원)
180 5000 10 600
  • 입/출자 기록
시각(시:분) 차량 번호 내역
05:34 5961 입차
06:00 0000 입차
06:34 0000 출차
07:59 5961 출차
07:59 0148 입차
18:59 0000 입차
19:09 0148 출차
22:59 5961 입차
23:00 5961 출차
  • 자동차별 주차 요금
차량 번호 누적 주차 시간(분) 주치 요금(원)
0000 34 + 300 = 334 5000 + ⌈(334 - 180) / 10⌉ x 600 = 14600
0148 670 5000 +⌈(670 - 180) / 10⌉x 600 = 34400
5961 145 + 1 = 146 5000

어떤 차량이 입차된 후에 출차된 내역이 없다면, 23:59에 출차된 것으로 간주합니다.

0000번 차량은 18:59에 입차된 이후, 출차된 내역이 없습니다. 따라서, 23:59에 출차된 것으로 간주합니다.

00:00부터 23:59까지의 입/출차 내역을 바탕으로 차량별 누적 주차 시간을 계산하여 요금을 일괄로 정산합니다.

누적 주차 시간이 기본 시간이하라면, 기본 요금을 청구합니다.

누적 주차 시간이 기본 시간을 초과하면, 기본 요금에 더해서, 초과한 시간에 대해서 단위 시간 마다 단위 요금을 청구합니다.

초과한 시간이 단위 시간으로 나누어 떨어지지 않으면, 올림합니다.

⌈a⌉ : a보다 작지 않은 최소의 정수를 의미합니다. 즉, 올림을 의미합니다.

주차 요금을 나타내는 정수 배열 fees, 자동차의 입/출차 내역을 나타내는 문자열 배열 records가 매개변수로 주어집니다. 차량 번호가 작은 자동차부터 청구할 주차 요금을 차례대로 정수 배열에 담아서 return 하도록 solution 함수를 완성해주세요.

입출력 예 설명

fees records result
[180, 5000, 10, 600] [“05:34 5961 IN”, “06:00 0000 IN”, “06:34 0000 OUT”, “07:59 5961 OUT”, “07:59 0148 IN”, “18:59 0000 IN”, “19:09 0148 OUT”, “22:59 5961 IN”, “23:00 5961 OUT”] [14600, 34400, 5000]
[120, 0, 60, 591] [“16:00 3961 IN”,”16:00 0202 IN”,”18:00 3961 OUT”,”18:00 0202 OUT”,”23:58 3961 IN”] [0, 591]
[1, 461, 1, 10] [“00:00 1234 IN”] [14841]

Code

const records = ["16:00 3961 IN","16:00 0202 IN","18:00 3961 OUT","18:00 0202 OUT","23:58 3961 IN"]
const fees = [120, 0, 60, 591] //기본 시간(분)	//기본 요금(원)	//단위 시간(분)	//단위 요금(원)

console.log(solution(fees, records));
//아직 풀고 있는 중
function solution(fees, records) {
    //초기 관리 데이터 생성
    let json = new Map(); let answer = []; 
    for (let index = 0; index < records.length; index++) {
        let temp = records[index].split(" ");
        json.set(temp[1], { hour: 0, min: 0, time : 0, price: 0, IN: "Y" })
        answer.push(temp[1])
    }
    const uniq = array => [...new Set(array)];
    answer = uniq(answer).sort();
    //정적인 
    for (let index = 0; index < records.length; index++) {
        let temp = records[index].split(" ");
        let time = ""
        if (temp[2] == 'IN') {
            time = temp[0].split(":");
            json.get(temp[1]).IN = "Y"
            json.get(temp[1]).price = 0
            json.get(temp[1]).hour = time[0]
            json.get(temp[1]).min = time[1]
        }else if(temp[2] == 'OUT'){
            let Calculator = 0
            time = temp[0].split(":");
            json.get(temp[1]).IN = "U"   
            Calculator +=  (time[0] - json.get(temp[1]).hour) * 60
            Calculator +=  (time[1] - json.get(temp[1]).min)
            json.get(temp[1]).time += Calculator
        }
    }
    //마지막으로 확인
    for (let index = 0; index < answer.length; index++) {
        let temp = records[index].split(" ");
        let time = ""
        if(json.get(answer[index]).IN ==  "Y" ){
            let Calculator = 0
            time = temp[0].split(":");
            json.get(answer[index]).IN = "U"   
            Calculator +=  (23 - json.get(answer[index]).hour) * 60
            Calculator +=  (59 - json.get(answer[index]).min)
            json.get(answer[index]).time += Calculator
        }
        //확인 하면 바로 정산 ㄱㄱ
        if(json.get(answer[index]).time <= fees[0]){
            answer[index] = fees[1]
        }else{
            answer[index] = fees[1] + Math.ceil(((json.get(answer[index]).time - fees[0]) / fees[2]))*fees[3]
        }
    }
    return answer;
}

댓글남기기