728x90
https://school.programmers.co.kr/learn/courses/30/lessons/161989?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
int solution(int n, int m, vector<int> section) {
int answer = 0;
int num = 0;
for (int i = 0; i < section.size(); i++)
{
if (section[i] > num)
{
num = (section[i] + m) - 1;
answer++;
}
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 카드 뭉치 C++ (0) | 2023.08.07 |
---|---|
[프로그래머스]Lv.1 대충 만든 자판 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.1 추억 점수 C++ (map) (0) | 2023.08.07 |
[프로그래머스]Lv.1 달리기 경주 C++ (map) (0) | 2023.08.07 |
[프로그래머스]Lv.0 문자열 바꿔서 찾기 C++ (0) | 2023.08.07 |