티스토리 뷰
문제 출처 - 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
- Python
- 스택
- 순열
- programmers
- 우선순위큐
- 2020 KAKAO BLIND RECRUITMENT
- 구현
- 딕셔너리
- SW Expert
- SWExpert
- 문자열
- left join
- 완전탐색
- hash
- C++
- 해시
- 프로그래머스
- combination
- BOJ
- dictionary
- 문자열처리
- 재귀
- 코딩테스트
- 괄호
- 힙
- Permutation
- 백준
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함