Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c#
- 18249
- 그리디알고리즘
- 원형
- 알고리즘
- 탄막 이동
- AI Hub
- 수 만들기
- 마우스 따라다니기
- 자료구조 목차
- mysqld.sock
- 3344
- SWEA
- 탄막 스킬 범위
- 탄막
- 걷는건귀찮아
- 문자열 압축
- 토글 그룹
- 우분투
- 윈도우
- 단어 수학
- 백준
- 알고리즘 목차
- 유니티
- 회의실 배정
- 강의실2
- 영상 프레임 추출
- MySQL
- 2020 KAKAO BLIND RECRUITMENT
- 3273
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 [3차] n진수 게임 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/17687
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
string solution(int n, int t, int m, int p) {
char ch[16]={'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; // 저장해서 사용하기
string answer = "";
string str = "";
int num = 0;
while(str.length() < t*m) {
string temp = "";
int divider = num;
while(divider/n!=0) {
temp += ch[divider%n];
divider /= n;
}
temp+=ch[divider%n];
reverse(temp.begin(), temp.end());
str += temp;
cout << temp << " " ;
num++;
}
for(int i=p-1; ; i+=m) {
answer += str[i];
if(answer.length() == t) break;
}
return answer;
}
'코딩테스트 > 문자열' 카테고리의 다른 글
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
---|---|
[문자열] 프로그래머스 [1차] 뉴스 클러스터링 Python (0) | 2022.02.04 |
[딕셔너리] 프로그래머스 [3차] 압축 Python (0) | 2022.02.04 |
[문자열 변환] 프로그래머스 [3차] 방금그곡 Python (0) | 2022.02.04 |
[문자열 뒤집기] 프로그래머스 [1차] 비밀 지도 C++ (0) | 2022.02.04 |
Comments