-
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
15-kokeunho #58
base: main
Are you sure you want to change the base?
15-kokeunho #58
Conversation
for (int i = 0; i <= ex; i++) { | ||
for (int j = 0; j <= ey; j++) { | ||
path[i][j] = 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.
์ด ๋ถ๋ถ์ ๋ณด๊ณ ๊ถ๊ธํ ์ ์ด ์๊ฒผ์ต๋๋ค!
path
๋ฐฐ์ด์ findPath
์์๋ง ์ฌ์ฉ๋๋๋ฏ ํฉ๋๋ค.
๊ทธ๋์ ์ด ํจ์๊ฐ ํธ์ถ๋ ๋ ๋งค๋ฒ ๋ถ๋ถ์ ์ธ ์ด๊ธฐํ๋ฅผ ํ๋ ๊ฒ๋ณด๋ค๋
๊ทธ๋ฅ ํจ์ ์คํ์์ 0์ผ๋ก ์ด๊ธฐํ ๋ ๋ฐฐ์ด์ ์์ฑํด๋ฒ๋ฆฌ๋ ๊ฒ์ ์ด๋จ๊น์?
int[][] path = new int[N][M]; // ๋ชจ๋ ๊ฐ์ด 0์ผ๋ก ์๋ ์ด๊ธฐํ๋จ
๋๋ ๋ฒ์๋ฅผ ์๋์ ๊ฐ์ด ์ง์ ํ๋ฉด ์ด๋จ๊น์?
for (int i = sx; i <= ex; i++) {
for (int j = sy; j <= ey; j++) {
path[i][j] = 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.
์คํ์? ๊ณ ๋ฑํ์? ๋ ์ํ๋ฌธ์ ๋ก ์์ฃผ ๋์๋ ๋ฌธ์ ๊ฐ๋ค์
๋๋ถ์ ๋ฌธ์ ์ดํด๋ ์ฌ์ ์ต๋๋ค
์ ๋ 1 to K
, K to N*M
์ ๊ณฑํ๋ ๋ฐฉ๋ฒ๊ณผ ์กฐ๊ธ ๋ค๋ฅธ ๋ฐฉ๋ฒ์ ์ฌ์ฉํ์ต๋๋ค.
1 to K
๋ฅผ ๋จผ์ ์งํํ๊ณ , K์ขํ
๊ฐ ์์์ด๋ผ ์๊ฐํ๊ณ ๋ค์ K to N*M
์ ํ๋ ๋ฐฉ์์
๋๋ค.
( ๋ฐ๋ณต๋๋ ๋ก์ง์ด ์์ด์ ํจ์ํ ํ ์ ์์ ๊ฒ ๊ฐ์๋ฐ passํ์ต๋๋ค.. ใ
ใ
)
์กฐ๊ธ ์ด๋ ค์ ๋ ์ ์ K ์ ์์น
๋ฅผ ๊ตฌํ๋ ๋ถ๋ถ์ด์์ต๋๋ค.
int K_x = K % M - 1;
int K_y = K / M;
if (K == 0) {
K_x = 0;
K_y = 0;
}
else if (K_x < 0){
K_x = M - 1;
K_y--;
}
์กฐ๊ฑด ๊ฒ์ฌ๋ ๋ง๊ณ ์กฐ๊ธ ์ง์ ๋ถํ๊ฒ ๋๋ค์..
๊ทผํธ๋์ ๊น๋ํ ๋ก์ง์ผ๋ก ํ๋ฒ์ ์ ์ฒ๋ฆฌํ์ ๊ฒ ๊ฐ๋ค์ ! ๐
CPP CODE
#include <iostream>
#include <vector>
using namespace std;
int main() {
int N, M, K;
cin >> N >> M >> K;
// find K's position
int K_x = K % M - 1;
int K_y = K / M;
if (K == 0) {
K_x = 0;
K_y = 0;
}
else if (K_x < 0){
K_x = M - 1;
K_y--;
}
vector<vector<int>> board(N, vector<int>(M, 0));
// 1 to K
for (int y = 0; y <= K_y; y++) {
for (int x = 0; x <= K_x; x++) {
if (x == 0 || y == 0) board[y][x] = 1;
else board[y][x] += board[y][x - 1] + board[y - 1][x];
}
}
// K to N*M
for (int y = K_y; y < N; y++) {
for (int x = K_x; x < M; x++) {
if (x == K_x || y == K_y) board[y][x] = board[K_y][K_x];
else board[y][x] += board[y][x - 1] + board[y - 1][x];
}
}
cout << board[N - 1][M - 1];
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.
์ ๋ dfs๋ฅผ ์ฌ์ฉํ์ฌ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ์๋๋ฐ dp๋ก ํด๊ฒฐํ๋ ๋ฐฉ๋ฒ์ ์๊ฐ์น๋ ๋ชปํ๋ค์. ์์ ์ ๋ฐฐ์ ๋ ๋ฌธ์ ๋ฅผ ์๊ณ ๋ฆฌ์ฆ์ ์ผ๋ก ๊ตฌํํ๋ ๋ฌธ์ ๋ผ ํ๋จํด๋ฒ๋ ค์ ๋ค๋ฅธ ์๊ฐ์ ํ์ง๋ ๋ชปํ๋ ๊ฒ ๊ฐ๋ค์. ๋ฌธ์ ๋ฅผ ์ข ๋ ๋ค์ํ ๋ฐฉ๋ฉด์ผ๋ก ๋ณผ ์ ์๋๋ก ๋ ธ๋ ฅํด์ผ๊ฒ ์ด์
์ฌ์ค dfs๋ก ๊ตฌํํ๋ ๋ฐ์๋ ์ด๋ ค์ด ์ ์ด ๋ง์์ต๋๋ค. ์ค๋๋ง์ ๋ฏธ๋ก๋ฅผ dfs๋ก ํ๋ ค ํ๋ค๋ณด๋ base case์ ํด๋นํ๋ ๋ณ์๋ฅผ ์๋ชป ์ง์ ํ๊ฑฐ๋ ์๋ชป๋ base case๋ฅผ ์ค์ ํ์๊ณ k์ ์์น๋ฅผ ์ค์ ํ๋ ๊ฒ์์๋ ์ค๋ฅ๊ฐ ๋ง์์ด์ ์๊ฐ์ด ์ข ๊ฑธ๋ ธ์ต๋๋ค.
๊ทธ๋ฆฌ๊ณ ์ ๋ฒ์ฒ๋ผ ๋ฐฑ์ค์์ ๋ฌธ์ ๋ฅผ ํ์ด๋ณด์๋๋ฐ์. ์ข ๋ง๋งํ๋๊ตฐ์.. ์ค๊ฐ ๊ฒฐ๊ณผ๋ฅผ ๋ชจ๋ฅด๋ ํด๋น ์ธ์ด์ ๋ํ ๋ฌธ๋ฒ์ ์๋ฒฝํ ์์งํด์ผํ๊ธฐ์ ๋ฌธ์ ๊ฐ ๋ ์ด๋ ต๊ฒ ๋๊ปด์ก๋๊ฒ ๊ฐ์ต๋๋ค. ๊ทผ๋ฐ ๊ด์ฐฎ์ ์ฐ์ต ๋ฐฉ๋ฒ์ด๋ผ ์๊ฐํ์ฌ ์ข ์ข ํด๋ณด๋๊ฑธ ์ถ์ฒ๋๋ ค์!
์ ์์ฑ๋ ์ฝ๋์ ๋๋ค. ์๊ฐ์ด๊ณผ๋ ์์๊ณ ์ ์๋ 100์ ๋ฐ์์ต๋๋ค. ์๋ง N๊ณผ M๊ฐ์ด ๋๋ฌด ์์์ ๊ทธ๋ฐ๊ฑฐ ๊ฐ์์.
code
//
// Created by ๊น๊ท ํธ on 2025. 1. 17..
//
#include <iostream>
#include <vector>
using namespace std;
int n, m, k;
int offset[2][2] = {{1, 0}, {0, 1}};
vector<vector<int> > map; //[n][m]
vector<vector<bool> > visited;
int dfs(int xs, int ys, int xd, int yd) {
if (xs == xd && ys == yd) return 1;
if (xs < 0 || ys < 0 || xs >= m || ys >= n) return 0;
if (visited[ys][xs]) return 0;
int cnt = 0;
visited[ys][xs] = true;
for (auto &dir: offset) {
int nx = xs + dir[0];
int ny = ys + dir[1];
cnt += dfs(nx, ny, xd, yd);
}
visited[ys][xs] = false;
return cnt;
}
int main() {
cin >> n >> m >> k;
map = vector<vector<int> >(n, vector<int>(m));
visited = vector<vector<bool> >(n, vector<bool>(m, false));
int xt = 0, yt = 0;
if (k != 0) {
xt = (k - 1) % m;
yt = (k - 1) / m;
}
int fir = dfs(0, 0, xt, yt);
int sec = dfs(xt, yt, m - 1, n - 1);
cout << fir * sec;
return 0;
}
๐ ๋ฌธ์ ๋งํฌ
[BOJ] ๊ฒฉ์์์ ๊ฒฝ๋ก https://www.acmicpc.net/problem/10164
โ๏ธ ์์๋ ์๊ฐ
1h
โจ ์๋ ์ฝ๋
K๊ฐ 0 (๊ฑฐ์ณ์ผ ํ ์ง์ ์ด ์๋)์ธ ๊ฒฝ์ฐ์ K๊ฐ ์๋ ๊ฒฝ์ฐ๋ฅผ ๋๋์ด์ผ ํฉ๋๋ค.
K๊ฐ ์๋ ๊ฒฝ์ฐ ํด๋น ์ง์ ์ ์ขํ๋ฅผ ์ฐพ๊ณ ํด๋น ์ขํ๋ฅผ ๊ฑฐ์ณ์
์ต์ข ๋ชฉ์ ์ง์ ๋๋ฌํ๋ ๊ฒฝ๋ก์ ์๋ฅผ ๊ตฌํฉ๋๋ค.
์์ง์ผ ์ ์๋ ๋ฐฉ๋ฒ์ ์ค๋ฅธ์ชฝ์ด๋ ์๋ ๋ฐ์ ์์ผ๋ฏ๋ก
findPath(0, 0, midX, midY) * findPath(midX, midY, N-1, M-1)
์ด๊ณง ์ต์ข ๋ชฉ์ ์ง์ ๋์ฐฉํ ์ ์๋ ๊ฒฝ๋ก์ ์ ์ ๋๋ค.
K๊ฐ ์๋ ๊ฒฝ์ฐ๋ ๊ทธ๋ฅ
findPath(0,0,N-1,M-1)
์ ๋๋ค.findPath ํจ์์์๋
์ฐ์ ๋ฐฐ์ด์ ๊ฐ๋ค์ 0์ผ๋ก ์ด๊ธฐํ ์์ผ์ฃผ๊ณ
์์ ์ง์ ๋ถํฐ ๋ชฉํ ์ง์ ๊น์ง ์ฐ, ํ๋ก ์ด๋ํ๋ฉฐ ํด๋น ์ง์ ๊น์ง์ ๊ฒฝ๋ก ์๋ฅผ ๊ฐฑ์ ํฉ๋๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
2์ฐจ์ ๋ฐฐ์ด์์ K ๋ฒ์งธ ์์์ ์ขํ๋ฅผ ์ฐพ์ ๋, ์ฒ์์๋ ๋ฐฐ์ด์ ๊ฐ์
1์ฉ ๋๋ ค๊ฐ๋ฉฐ ๋ฃ์ด์ฃผ๊ณ K์ ๊ฐ์ ๊ฐ์ ๋ฃ๊ฒ ๋ ๋ ์ขํ์ ์์น๋ฅผ ์ ์ฅํ๋ ์์ผ๋ก ํ์ต๋๋ค.
๊ทธ๋ฌ๋ 2์ฐจ์ ๋ฐฐ์ด์ด ํ๋ ๋ ํ์ํ๊ธฐ๋ ํ๊ณ ์ข์ ๋ฐฉ๋ฒ์ ์๋๋ผ๊ณ ์๊ฐํ์ต๋๋ค.
์๋์ ๊ฐ์ ์ฝ๋๋ก ์ขํ๋ฅผ ์ฐพ์ ์ ์๋ค๋ ๊ฒ์ ์๊ฒ ๋์์ต๋๋ค.