-
Notifications
You must be signed in to change notification settings - Fork 557
/
2448.cpp
49 lines (40 loc) · 971 Bytes
/
2448.cpp
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
// Authored by : unluckyjung
// Co-authored by : BaaaaaaaaaaarkingDog
// http://boj.kr/0a12eb4ae44a4d86960f1e5c45eb6fca
#include <bits/stdc++.h>
using namespace std;
const int MAX = 1024 * 3 + 2;
int n;
char board[MAX][MAX * 2 - 1];
void fill_star(const int& x, const int& y) {
board[x][y] = '*';
board[x + 1][y - 1] = '*', board[x + 1][y + 1] = '*';
for (int i = y - 2; i <= y + 2; ++i) {
board[x + 2][i] = '*';
}
}
void func(const int& s, const int& x, const int& y) {
if (s == 3) {
fill_star(x, y);
return;
}
int ns = s / 2;
func(ns, x, y);
func(ns, x + ns, y - ns);
func(ns, x + ns, y + ns);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
func(n, 0, n - 1);
for (int i = 0; i < n; ++i) {
for (int ii = 0; ii < n * 2 - 1; ++ii) {
if (board[i][ii] == '*')
cout << '*';
else
cout << ' ';
}
cout << "\n";
}
}