https://school.programmers.co.kr/learn/courses/30/lessons/133501?language=cpp
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
결국 화랑이 붙잡히는 경우는, "t시간에 distance=t에서 근무하는 경비병이 있을 때"인 것을 파악하는것
#include <string>
#include <vector>
using namespace std;
int solution(int distance, vector<vector<int>> scope, vector<vector<int>> times) {
int answer = distance;
for(int i=0; i<scope.size(); i++){
// t시간에 근무이면서 근무범위에 t가 속해있는 최소값 t 구하기
int dFrom = min(scope[i][0], scope[i][1]), dTo = max(scope[i][0], scope[i][1]);
int tW = times[i][0], tR = times[i][1];
int t = 1; // 근무시작시간
while(t+tW-1<dFrom){ // 근무시간범위와 근무범위에 겹칠때까지++
t += (tW + tR);
}
for(int j=0; j<tW+tR+tW && t<dFrom; j++){
t++;
}
if(dFrom<=t && t<=dTo && answer > t) answer = t;
}
return answer;
}
'알고리즘 > 알고리즘' 카테고리의 다른 글
[C++] 프로그래머스 : 할인 행사 (0) | 2022.10.30 |
---|---|
[C++] 프로그래머스 : 롤케이크 자르기 (0) | 2022.10.29 |
[JAVA] 프로그래머스 : 뉴스 클러스터링 (0) | 2022.08.05 |
[JAVA] 프로그래머스 : 행렬 테두리 회전하기 (0) | 2022.08.02 |
[JAVA] 프로그래머스 : 신규 아이디 추천 (0) | 2022.08.01 |