일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #괄호변환 #programmers #C++
- #알고리즘 #백준 #1987 #백준1987 #algorithm #baekjoon #baekjoon1987 #Java
- #알고리즘 #백준 #14888 #백준14888 #algorithm #baekjoon #baekjoon14888 #C++
- #알고리즘 #백준 #15684 #백준15684 #algorithm #baekjoon #baekjoon15684 #C++
- #알고리즘 #백준 #2616 #백준2616 #algorithm #baekjoon #baekjoon2616 #Java
- 클린코드
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #문자열압축 #programmers #C++
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #블록이동하기 #programmers #C++
- #알고리즘 #백준 #17140 #백준17140 #algorithm #baekjoon #baekjoon17140 #C++
- #알고리즘 #백준 #2580 #백준2580 #algorithm #baekjoon #baekjoon2580 #Java
- #알고리즘 #백준 #5214 #백준5214 #algorithm #baekjoon #baekjoon5214 #C++
- 스레드 #동시성 #thread #process #
- #알고리즘 #algorithm #프로그래머스 #2020카카오공채 #외벽점검 #programmers #C++
- #알고리즘 #백준 #1525 #백준1525 #algorithm #baekjoon #baekjoon1525 #C++
- #알고리즘 #백준 #15683 #백준15683 #algorithm #baekjoon #baekjoon15683 #C++
- #알고리즘 #백준 #17406 #백준17406 #algorithm #baekjoon #baekjoon17406 #C++
- 개발자취미
- 개발서
- #알고리즘 #백준 #1793 #백준1793 #algorithm #baekjoon #baekjoon1793 #C++
- #알고리즘 #백준 #1260 #백준1260 #algorithm #baekjoon #baekjoon1260 #Java
- 책리뷰
- #알고리즘 #백준 #3190 #백준3190 #algorithm #baekjoon #baekjoon3190 #C++
- #알고리즘 #백준 #12094 #백준12094 #algorithm #baekjoon #baekjoon12094 #C++
- #알고리즘 #백준 #2352 #백준2352 #algorithm #baekjoon #baekjoon2352 #C++
- #알고리즘 #백준 #2573 #백준2573 #algorithm #baekjoon #baekjoon2573 #C++
- #알고리즘 #백준 #17136 #백준17136 #algorithm #baekjoon #baekjoon17136 #C++
- #알고리즘 #백준 #4386 #백준4386 #algorithm #baekjoon #baekjoon4386 #C++
- #알고리즘 #백준 #17472 #백준17472 #algorithm #baekjoon #baekjoon17472 #C++
- #알고리즘 #백준 #17837 #백준17837 #algorithm #baekjoon #baekjoon17837 #C++
- CleanCode
Archives
- Today
- Total
개발자 일기장.
백준 2448. 별 찍기 - 11 본문
별 찍기 - 11
Problem?
예제를 보고 규칙을 유추한 뒤에 별을 찍어 보세요.
Input
첫째 줄에 N이 주어진다. N은 항상 3×2k 수이다. (3, 6, 12, 24, 48, ...) (k ≤ 10)
Output
첫째 줄부터 N번째 줄까지 별을 출력한다.
Solution
규칙 찾기
규칙을 찾아서 재귀함수를 이용해 풀자.
현재의 높이와, 삼각형의 제일 높은 지점의 위치를 x, y로 지정하고 인자로 넘겨 주었다.
가정 arr : 출력배열 |
Code
#include <iostream>
using namespace std;
char arr[3072][6144];
void star(int height, int x, int y) {
if (height == 3) {
arr[y][x] = '*';
arr[y + 1][x - 1] = '*';
arr[y + 1][x + 1] = '*';
arr[y + 2][x - 2] = '*';
arr[y + 2][x - 1] = '*';
arr[y + 2][x] = '*';
arr[y + 2][x + 1] = '*';
arr[y + 2][x + 2] = '*';
return;
}
star(height / 2, x, y);
star(height / 2, x - (height / 2), y + (height / 2));
star(height / 2, x + (height / 2), y + (height / 2));
}
int main() {
int n, i, j;
cin >> n;
star(n, n - 1, 0);
for (int i = 0; i < n; i++) {
for (int j = 0; j < 2 * n; j++) {
if (arr[i][j] == '*')
cout << '*';
else
cout << ' ';
}
cout << "\n";
}
return 0;
}
규칙문제.
'취업 > Algorithm.' 카테고리의 다른 글
백준 12849. 본대 산책 (0) | 2020.03.06 |
---|---|
백준 2096. 내려가기 (0) | 2020.03.03 |
백준 16953문제. A→B (0) | 2020.03.02 |
백준 1043문제. 거짓말 (0) | 2020.03.01 |
백준 15657문제. N과 M (8) (0) | 2020.02.28 |