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 |
Tags
- oracle
- Unreal
- 2단계로킹
- OS
- 트랜잭션 관리
- SQL
- 데이터베이스 배움터
- 백준
- command not found
- 비재귀셰그먼트
- 셰그먼트트리
- 백준 1253번
- C++
- 1759번
- 의미와 무의미의 경계에서
- 언리얼 플러그인
- UActor
- Linux
- 1967번
- FBX
- objtofbx
- 1253번
- hackerank
- UnrealMP
- 언리얼 커스텀 플러그인
- 오손데이터읽기
- Security
- 실습
- 민겸수
- 5639
Archives
- Today
- Total
fatalite
C++ / 이진 변환 반복하기 본문
Problem
난이도 : 프로그래머스 2단계 75%
범위 : 음,, 단순 반복문, 문자열, 데이터형
Solution
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
vector<int> solution(string s) {
vector<int> answer;
int j = 0;
int ZeroCount = 0;
while(s.size() > 1){
j++;
string NewString;
for(int i = 0; i < s.size(); i++){
if(s[i] == '0'){
ZeroCount++;
}else{
NewString.push_back('1');
}
}
int Size = NewString.size();
string newnew;
while(Size > 0){
if(Size % 2 == 1){
newnew.push_back('1');
}else{
newnew.push_back('0');
}
Size = Size / 2;
}
s = newnew;
}
answer.push_back(j);
answer.push_back(ZeroCount);
return answer;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
C++ / 영어 끝말잇기 (0) | 2023.05.07 |
---|---|
C++ / 숫자의 표현 (0) | 2023.04.24 |
C++ / 올바른 괄호 (0) | 2023.04.22 |
C++ / 최소값 만들기 (0) | 2023.04.22 |
C++ / 과제 진행하기 (0) | 2023.04.19 |