티스토리 뷰
문제 출처 - https://programmers.co.kr/learn/courses/30/lessons/42883
#include <string>
#include <vector>
using namespace std;
string solution(string number, int k) {
string answer = "";
char max;
int idx = 0;
for(int i=0; i<number.size()-k; i++) {
max = '0';
for(int j=idx; j<=k+i; j++) {
if(max < number[j]) {
max = number[j];
idx = j+1;
}
}
answer += max;
}
return answer;
}
-
각 자리 숫자를 뽑을때마다 그때그때의 최대값 선택
-
숫자 비교할때 최대 숫자는 적어도 i+k번째 숫자 전에 나와야함
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - 올바른 괄호의 갯수(level4) (0) | 2019.11.30 |
---|---|
[C++]프로그래머스 - 디스크 컨트롤러(level3) (0) | 2019.11.30 |
[C++]프로그래머스 - 나누어 떨어지는 숫자 배열(level1) (0) | 2019.11.30 |
[C++]프로그래머스 - 도둑질(level4) (0) | 2019.11.22 |
[C++]프로그래머스 - 네트워크(level3) (0) | 2019.11.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스택
- 힙
- 백준
- 문자열처리
- 해시
- 2019 Kakao Blind Recruitment
- 괄호
- C++
- SWExpert
- 코딩테스트
- left join
- 순열
- hash
- SW Expert
- Python
- 파이썬
- 프로그래머스
- 딕셔너리
- programmers
- 우선순위큐
- combination
- 구현
- Permutation
- 문자열
- BOJ
- 완전탐색
- 2020 KAKAO BLIND RECRUITMENT
- 정렬
- dictionary
- 재귀
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함