-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4-wnsmir #13
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ค์ฉ๋ ์ฝ๋๋ณด๊ณ ์์ฑํ๊ฑด ๋ญ๊ฐ c++ ์ค๋ฝ์ง์์? ๋๋์ด ์์ด์ ์ข ์ฐพ์๋ดค์ต๋๋ค.
์ ์ฒด ํฌ๊ธฐ์ ๋ฐฐ์ด์ ๋ง๋ค์ด๋๊ณ , ๊ณ์ฐ์ ๋ฐ๋ผ ๋ณ์ ์ง์ ์ฐ๋ ๋ก์ง์ด ๋๋ถ๋ถ์ด์์ต๋๋ค.
์ฝ๋๋ฅผ ๋ณด๊ณ ๋ c++์คํ์ผ์ด ๋ ์ ์ดํด๋์๊ณ , ๋ ผ๋ฆฌ์ ์ผ๋ก๋ ์ค์ฉ๋ ์คํ์ผ์ด ๋ ์ ์ดํด๋์์ต๋๋ค.
๋ณ์ฐ๊ธฐ c++ ์ฝ๋
#include <iostream>
#include <cstring>
using namespace std;
// ๋์ด = n, ๋ฐ๋ณ = 2n-1
char board[3072][6144];
void draw(int x, int y) {
board[x + 0][y + 0] = '*';
board[x + 1][y - 1] = '*';
board[x + 2][y - 2] = '*';
board[x + 2][y - 1] = '*';
board[x + 2][y + 0] = '*';
board[x + 2][y + 1] = '*';
board[x + 2][y + 2] = '*';
board[x + 1][y + 1] = '*';
}
void star(int N, int x, int y) {
if (N == 3) draw(x, y);
else {
star(N / 2, x, y);
star(N / 2, x + N / 2, y - N / 2);
star(N / 2, x + N / 2, y + N / 2);
}
}
int main() {
// 1) input
int N;
cin >> N;
// 2) solution
memset(board, ' ', sizeof(board));
star(N, 0, N - 1);
for (int y = 0; y < N; y++) {
for (int x = 0; x < 2 * N - 1; x++) cout << board[y][x];
cout << endl;
}
return 0;
}
์ ๊ธฐ ๋ณด์ด๋ ๊ธฐ๊ดดํ drawํจ์... ๊ฒ๋จน์ง ๋ง๊ณ ์ฒ์ฒํ ๋ณด์๋ฉด ์ดํด๊ฐ ๋น ๋ฅผ ๊ฒ๋๋ค.
https://nim-code.tistory.com/85
์ฌ๊ธฐ ์ฐธ๊ณ ๋ง์ด ํ์ด์.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ๋ ๋ณ์ ๊ธฐ์ค์ผ๋ก ์์ชฝ์ ๊ณต๋ฐฑ์ ์ถ๊ฐํ๋ฉฐ ๋ฐฐ์ด์ ์์ฑํด๋๊ฐ๋ ๊ฑธ ์์ํ์ต๋๋ค....
c++๋ก ๋๋ฌด ์ด๋ ต๋๋ผ๊ณ ์..
for star in stars:
result.append(' ' * (n // 2) + star + ' ' * (n // 2))
ํนํ ์ด๋ฐ ์ฐ์ฐ cpp์์ ์ด๋ป๊ฒ ํด์ผํ ์ง ๊ฐ์ด ์์กํ์ต๋๋ค...
for (const string& star : stars) {
string spaces(n / 2, ' '); // n
result.push_back(spaces + star + spaces);
}
์๋ฐ์์ผ๋ก ํด๋ณด๋ค๋ณด๋ ๊ฐ์ ์กํ๋๋ฐ....
๊ณ ๋ฏผํ๋๋ฐ ์๊ฐ์ด ์์ฒญ ์ค๋ ๊ฑธ๋ ธ์ต๋๋ค.
๋ณ์ฐ๊ธฐ.. ์ฐ์ต๊ฒ ๋ดค๋๋ฐ ํท๊ฐ๋ฆฌ๋ ๋ถ๋ถ, ๊ตฌํ์ ์ด๋ ค์์ด ๋ง์ ๋ฌธ์ ์๋ค์...
๋ณ์ฐ๊ธฐ c++ ์ ์ฒด ์ฝ๋
#include <iostream>
#include <vector>
#include <string>
using namespace std;
vector<string> draw_star(int n) {
if (n == 3) return {" * ", " * * ", "*****"};
vector<string> stars = draw_star(n / 2);
vector<string> result;
for (const string& star : stars) {
string spaces(n / 2, ' '); // n
result.push_back(spaces + star + spaces);
}
for (const string& star : stars) {
result.push_back(star + ' ' + star);
}
return result;
}
int main() {
int N;
cin >> N;
vector<string> result = draw_star(N);
for (const string& line : result)
cout << line << endl;
return 0;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๋ณ์ฐ๊ธฐ๋ ์ด๋ ค์ด๊ฒ ๋ง๊ตฐ์.. ๊ณ ์ํ์ จ์ต๋๋ค~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ์ฝ๋ ์ ๋๋น
code
#include <iostream>
#include <vector>
#include <string>
using namespace std;
vector<string> catchStars(int n) {
if (n == 3) {
return { " * ", " * * ", "*****" };
}
// ํ ๋จ๊ณ ์ ์ stars๋ค์ ๋ฐ์
vector<string> stars = catchStars(n/2);
vector<string> triple_stars;
// ์ฒซ๋ฒ์งธ ์ผ๊ฐํ ์์ฑ
for (auto s : stars) {
string line;
line.append(n/2, ' ');
line.append(s);
line.append(n/2, ' ');
triple_stars.push_back(line);
}
// ๋, ์ธ๋ฒ์งธ ์ผ๊ฐํ ์์ฑ
for (auto s : stars) {
string line;
line.append(s);
line.append(" "); // ๋๋ฒ์งธ์ ์ธ๋ฒ์งธ ์ผ๊ฐํ ์ฌ์ด ๊ณต๋ฐฑ ์ถ๊ฐ
line.append(s);
triple_stars.push_back(line);
}
return triple_stars;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
vector<string> stars = catchStars(n);
for (auto& s : stars)
cout << s << '\n';
return 0;
}
๐ ๋ฌธ์ ๋งํฌ
https://www.acmicpc.net/problem/2448
โ๏ธ ์์๋ ์๊ฐ
50m
โจ ์๋ ์ฝ๋
๋ณ์ฐ๊ธฐ๋ฌธ์ ๋ ํ๋ฒ์ฉ ๋ค ํ์ด๋ณด์ จ์๊ฒ ๊ฐ์ต๋๋ค. ๊ธฐ์ด๋ ๋ฒจ์ ๋ค์ค๋ฐ๋ณต๋ฌธ์ ํ ๋๋ผ ์ถ์ธกํด๋ณด๋๋ฐ์, ์ด ๋ฌธ์ ๋ ํ๋ ํ๊ณผ ๊ฐ์ด ํจํด์ด ๋ฐ๋ณต๋์ด ๋ํ๋๋ ๊ท์น์ ๋ณด์ฌ์ฃผ๊ณ ์์ต๋๋ค.
์ด๋ฐ ๋ชจ์์ธ๋ฐ ์ข ์ค๋ ๊ณ ๋ฏผํด๋ณด๋ค ์ฌ๊ท๋ก ํ์๊ณ ๋ง์๋จน์์ต๋๋ค.
base๋ฅผ 3์ผ๋ก ํ๋๋ฐ, ์ด์ ๋ ์ ์ผ ์์ ์ผ๊ฐํ์ด [' * ', ' * * ', '*****'] 3์ค๋ก ๊ตฌ์ฑ๋์ด์๊ธฐ ๋๋ฌธ์ ๋๋ค.
์ฌ๊ท๋ ์ดํด๊ฐ ๋ง๋ก๋ ํ๋ค์ด n==6์ผ๋ result๋ฆฌ์คํธ๋ฅผ ๋ณด์ฌ๋๋ฆฌ์๋ฉด
[
" * ",
" * * ",
" ***** ",
" * * ",
" * * * * ",
"***** *****"
]
์ด์ํ๊ฐ ๋ฉ๋๋ค.
์ฆ nใ 12๋ผ๋ฉด, ์ ์ํ์์ ๋ค์ ์ฒซ for๋ฌธ์ ๋์ ์ ์ผ๊ฐํ 3๊ฐ์ ๊ณต๋ฐฑ์ด ์์ชฝ์ ์ถ๊ฐ๋์ด ์ค๊ฐ์ ๋ ฌ๋๊ณ , ๋ฐ์ ์ ๊ฒฐ๊ณผ ์์ฒด๊ฐ ๊ณต๋ฐฑ์ ํ๋ ๋๊ณ ๋ฐ์ ๋๊ฐ๊ฐ ๊น๋ฆฌ๊ฒ ๋๋๊ฒ์ ๋๋ค.
์ฌ๊ท์ ๋ถํ ์ ๋ณต ์นํฐ์ ๋ถ๋ฅํด์ ๋์๋๋ฐ์, ์ ๊ท๋ฅผ ํ์ฉํ์ฌ ๊ฐ์ฅ์์ n==3์ผ๋๋ฅผ ๊ธฐ์ค์ผ๋ก ์ ์ฐจ ๋ ํฐ ์ผ๊ฐํ์ ๋ง๋ค์ด๋๊ฐ๋ ๊ตฌ์กฐ์ ๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ด๋ ํ ํจํด์ด ๋ฐ๋ณต๋๋๊ฒ ์ฒ๋ผ ๋ณด์ธ๋ค๋ฉด, ์ฌ๊ท์ ๋ถํ ์ ๋ณต์ ๋ ์ฌ๋ ค ๋ฌธ์ ๋ฅผ ํ๊ธฐ ์์ํ๊ธฐ ์ ๊น์ง์ ์๊ฐ์ ๋จ์ถํ๋๊ฒ ํต์ฌ์ด๋ผ ์๊ฐ์ด ๋ค์์ต๋๋ค.
์ฌ๊ท๋ ํ๋ฒ ์ดํด๋ง ํ๋ฉด ์ดํ๋ก๋ ๊ฐ์ฅ ๊น๋ํ ํ์ด๋ฒ์ ์ ๊ณตํ๋ ๊ธฐ๋ฒ์ด๋ผ ์๊ฐํฉ๋๋ค. ํจํด๋ฐ๋ณต -> ์ฌ๊ท, ๋ถํ ์ ๋ณต ๋ค์ ์ด๋ฐ๋ฌธ์ ๋ฅผ ๋ดค์๋ ์ด๊ฑธ ๋ ์ฌ๋ ค ์๊ฐ์ ๋จ์ถํ๋ค๋ฉด, ์ด๋ฌธ์ ๊ฐ ์ ์๊ฒ ์ค ๊ฐ๋ฅด์นจ์ ๋คํ๋ค๊ณ ์๊ฐํฉ๋๋ค.