-
https://school.programmers.co.kr/learn/courses/30/lessons/42885
프로그래머스 구명보트
아이디어
Greedy문제입니다. 한번에 두명밖에 못탄다는 점을 캐치하지 못했다면 어마어마하게 삽질 할 문제입니다.
문제를 정확하게 읽어내는 연습이 필요합니다.
#include <string> #include <vector> #include <algorithm> using namespace std; int solution(vector<int> people, int limit) { int answer = 0; sort(people.begin(), people.end()); int together = 0; //같이 탈수 있었던 사람의 수와 people에 남은 수가 같으면 보트를 다 탄거임 while (together < people.size()) { //같이 탈수 있으면(2명까지만 탈 수 있음) if (people[together] + people.back() <= limit) { together++; } people.pop_back(); answer++; } return answer; }
'알고리즘 > 프로그래머스' 카테고리의 다른 글
Programers 124나라의 숫자 (0) 2022.07.26 Programers 큰 수 만들기 (0) 2022.07.26 Programers 다음 큰 숫자 (0) 2022.07.26 Programers 다리를 지나는 트럭 (0) 2022.07.26 Programers 더 맵게 (0) 2022.07.26 댓글