티스토리 뷰
title: "단속카메라"
category: 프로그래머스[Level-3]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-02-05"
문제 링크
C++
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool cmp(vector<int> a, vector<int> b){
return a[1]<b[1];
}
int solution(vector<vector<int>> routes) {
int answer = 1;
// 나간 시점을 기준으로 정렬
stable_sort(routes.begin(), routes.end(), cmp);
int idx=0;
int end=routes[idx++][1]; // 카메라 설치 지점
while(idx<routes.size()){
int start=routes[idx][0];
if(start>end){
// 진입이 카메라 설치할 지점보다 작을 경우
answer++;
end=routes[idx][1];
}
idx++;
}
return answer;
}
JavaScript
function solution(routes) {
var answer = 0;
routes.sort((a, b) => a[1] - b[1]); // 나간 시점 기준 오름차순
let end = -30001;
routes.forEach((v) => {
const start = v[0];
if (start > end) {
// 카메라 설치 지점보다 진입 시점이 클 때
answer++;
end = v[1];
}
});
return answer;
}
728x90
반응형
'Programmers Solutions > Level-3' 카테고리의 다른 글
[프로그래머스] 섬 연결하기 (0) | 2021.02.06 |
---|---|
[프로그래머스] 단어 변환 (0) | 2021.02.06 |
[프로그래머스] 가장 먼 노드 (0) | 2021.02.06 |
[프로그래머스] 디스크 컨트롤러 (0) | 2021.02.05 |
[프로그래머스] 자물쇠와 열쇠 (0) | 2021.02.05 |
댓글