반응형
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
- upper_bound
- 소프티어
- @P0
- 13908
- OFFSET
- softeer
- 연결요소
- 처우산정
- 성적평가
- Kafka
- 오퍼레터
- 매개변수탐색
- 경력
- boj #19237 #어른 상어
- 퇴사통보
- incr
- 파라메트릭
- 처우협의
- BFS
- 기술면접
- 백준
- msSQL
- Docker
- 백트래킹
- dfs
- BOJ
- 물채우기
- compose
- 6987
- 이분탐색
Archives
- Today
- Total
기술 블로그
길이가 N인 이진수 본문
728x90
반응형
길이가 N인 자연수를 입력하였을 때, 그 길이에 해당하는 이진수를 모두 출력하시오.
(단, N은 10보다 같거나 작은 자연수)
입출력 예시 1
2
00
01
10
11
입출력 예시 2
3
000
001
010
011
100
101
110
111
C언어 코드
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int ans[50] = { 0, }; int N = 0; int index = 0; void BackTracking(int pos) { if (index + 1 == N) { for (int i = 0; i < N; i++) { printf("%d", ans[i]); } printf("\n"); return; } for (int i = pos; i < N; i++) { ++index; ans[index] = 0; // 위에 2줄이 push_back(0)하고 같다. BackTracking(i + 1); // vector면 pop_back()을 해줘야 하지만, 배열이라서, 덮어씀. // 즉, pop_back() + push_back(1) ans[index] = 1; BackTracking(i + 1); --index; // pop_back() } } int main(void) { index = -1; memset(ans, 0, sizeof(ans)); scanf("%d", &N); BackTracking(0); return 0; } | cs |
C++ 코드
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int N = 0; void BackTracking(int pos, vector<int> vc) { if (vc.size() == N) { for (auto i : vc) { printf("%d", i); } printf("\n"); return; } for (int i = pos; i < N; i++) { vc.push_back(0); BackTracking(i + 1, vc); vc.pop_back(); vc.push_back(1); BackTracking(i + 1, vc); vc.pop_back(); } } int main(void) { scanf("%d", &N); vector<int> v; BackTracking(0, v); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > 기타' 카테고리의 다른 글
Zero One Algorithm Contest 2018 (0) | 2019.01.03 |
---|---|
막대 그래프 그리기 (0) | 2018.10.27 |
배열 속 원소들 확인하기 (0) | 2018.10.05 |
길 확인하기 (0) | 2018.09.28 |
[카카오 코드 페스티벌 2018 예선 A] 상금헌터 (0) | 2018.09.18 |