250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

[Algorithm] 호텔 대실 ( Programmers - JavaScript ) 본문

[Snow-ball]프로그래밍(컴퓨터)/Algorithm Training

[Algorithm] 호텔 대실 ( Programmers - JavaScript )

Snow-ball 2023. 10. 22. 21:05
반응형

문제 설명

호텔을 운영 중인 코니는 최소한의 객실만을 사용하여 예약 손님들을 받으려고 합니다. 한 번 사용한 객실은 퇴실 시간을 기준으로 10분간 청소를 하고 다음 손님들이 사용할 수 있습니다.

예약 시각이 문자열 향태로 담긴 2차원 배열 book_time이 매개변수로 주어질 때, 코니에게 필요한 최소 객실의 수를 return 하는 solution 함수를 완성해주세요.

 

 

 

 


 

 

 

제한사항

 

 

 

 


 

 

 

입출력 예

 

 

 

 


 

 

 

 

입출력 예 설명

 

 

 

 


 

 

 

 

문제풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function solution(book_time) {
  const rooms = [];
 
  book_time.sort().forEach(([start, end]) => {
    const [startHour, startMinute] = start.split(":");
    const [endHour, endMinute] = end.split(":");
 
    const endTime = Number(endHour) * 60 + Number(endMinute) + 10;
 
    const index = rooms.findIndex(
      (checkOut) => checkOut <= Number(startHour) * 60 + Number(startMinute)
    );
 
    if (index === -1) rooms.push(endTime);
    else rooms[index] = endTime;
  });
 
  return rooms.length;
}
cs

 

 

 

 

 

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

 

프로그래머스

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

programmers.co.kr

 

반응형
Comments