-
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
13-wnsmir #54
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.
์ ๋ ์ด์ ๋ฆฌ๋ทฐ์์๋ ์ผ๋ ์๊ณ ๋ฆฌ์ฆ์ ๊ทธ๋๋ก ๋ค์ ์จ๋ดค์ต๋๋ค.
(๋ค์์ ์ด๋ฐ๊ฒ ๋์ค๋ฉด ํ๋ก์ด๋ ์์ฌ๋ก....)
ํน๋ณํ ๊ธฐ์ ์ ์์ง๋ง ์ด ๋ฌธ์ ์ ์ ํฉํ ํํ๋ก ์กฐ๊ธ ๋ณํํ์ต๋๋ค.
ํ์์ ๋
ธ๋๋ฅผ ๊บผ๋ผ๋
if (cur == e) return distance;
์ด๋ ๊ฒ ๋
ธ๋๋ง๋ค ๊ฒ์ฌ๋ฅผ ํ๋ฉด์ ๋ชฉ์ ์ง์ ๋์ฐฉํ๋ฉด ๋ฐ๋ก ๊ฑฐ๋ฆฌ๋ฅผ ๋ฐํํ๋ ๊ทธ๋ฐ ๋ก์ง์ ์ถ๊ฐํ์ต๋๋ค.
๊ทธ๋ฆฌ๊ณ ์ if
๋ฌธ์ ๊ฑธ๋ฆฌ์ง ์๊ณ ํจ์๊ฐ return
๋๋ฉด ๋ชฉ์ ์ง๋ก๊ฐ๋ ๊ธธ์ด ์๋ค๋ ๋ป์ด๊ธฐ์ -1
์ return
ํ์ต๋๋ค.
CPP CODE
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int N, M;
vector<vector<int>> graph;
int bfs(int s, int e) {
vector<bool> visited(N + 1, false);
queue<int> q;
q.push(s);
visited[s] = true;
int distance = 0;
while (!q.empty()) {
int size = q.size();
while (size--) {
int cur = q.front();
q.pop();
if (cur == e) return distance;
for (int v : graph[cur]) {
if (!visited[v]) {
q.push(v);
visited[v] = true;
}
}
}
distance++;
}
return -1;
}
int main() {
cin >> N >> M;
graph = vector<vector<int>>(N + 1);
for (int i = 1; i <= M; i++) {
int a, b;
cin >> a >> b;
graph[a].push_back(b);
graph[b].push_back(a);
}
int X, K;
cin >> X >> K;
int temp1 = bfs(1, K);
int temp2 = bfs(K, X);
if (temp1 == -1 || temp2 == -1) cout << "-1\n";
else cout << temp1 + temp2;
return 0;
}
for k in range(1, N+1): | ||
for a in range(1, N+1): | ||
for b in range(1, N+1): | ||
graph[a][b] = min(graph[a][b], graph[a][k] + graph[k][b]) |
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.
์ค ์ด๊ฒ ํ๋ก์ด๋-์์ฌ
์๊ณ ๋ฆฌ์ฆ์ด๊ตฐ์ ๋ค์์๋ ์ด ์๊ณ ๋ฆฌ์ฆ ์จ๋ด์ผ๊ฒ ๋ค์...
๐ ๋ฌธ์ ๋งํฌ
์ด๊ฒ์ด ์ฝ๋ฉํ ์คํธ๋ค ์ค์ ๋ฌธ์ ์ค chapter ์ต๋จ๊ฒฝ๋ก์ 1๋ฒ๋ฌธ์ ๋ฐ์ท์ ๋๋ค.
๊ท ํธ๋ 12๋ฒ์งธ PR๊ณผ ๋น์ทํ ๋ฌธ์ ๋ฅผ ๋ณต์ต๊ฒธ ํ์ด๋ณด๊ณ ์ ๊ฐ์ ธ์๋ดค์ต๋๋ค.
๋น์ทํ์ง๋ง ๋ค๋ฅธ์ ๊ทผ์ผ๋ก ํ์ด ์ข ์ค๋๊ฑธ๋ ธ์ต๋๋ค,,
๋ฏธ๋๋์ - ๋์ด๋2/3 - ํ์ด์๊ฐ 40min - ๋ฉ๋ชจ๋ฆฌ์ ํ 128MB
๋ฌธ์
๋ฐฉ๋ฌธํ๋งค์ A๋ ํ์ฌ 1๋ฒํ์ฌ์ ์์นํด์์ผ๋ฉฐ X๋ฒ ํ์ฌ์ ๋ฐฉ๋ฌธํด ๋ฌผ๊ฑด์ ํ๋งคํ๊ณ ์ ํ๋ค. ๋ฏธ๋๋์์์ ํ์ฌ๋ ํ์ฌ๋ผ๋ฆฌ ์ฐ๊ฒฐ๋์ด์๋ ํต๋ก๋ก๋ง ์ด๋๊ฐ๋ฅํ๊ณ , ์ด ํต๋ก๋ ํญ์ ์ด๋๋ 1์์๊ฐ์ผ๋ก ์๋ฐฉํฅ์ผ๋ก ์ด๋ํ ์ ์๋ค.
A๋ 1๋ฒ์์ X๋ฒ๊น์ง ๊ฐ์ผํ๋๋ฐ ๋์ค ์๊ฐํ ์ ํด์ผํ๋ค. ์๊ฐํ ์๋๋ K๋ฒ ํ์ฌ๋ฅผ ๋ฐฉ๋ฌธํ ๋ค Xํ์ฌ๋ก ๊ฐ๋๊ฒ์ด ๋ชฉํ์ด๋ค.
ํ์์น์์ K๋ฅผ๊ฑฐ์ณ X๋ก ์ด๋ํ๋ A์ ์ต๋จ ์ด๋์๊ฐ์ ๊ตฌํ์ฌ๋ผ.
์ ๋ ฅ์ ์ฒซ์ค์ N๊ณผM์ด ๊ณต๋ฐฑ์ ๋๊ณ ์ฃผ์ด์ง๊ณ , ๋ค์ M๊ฐ์ ์ค์ ๊ฐ ํ์ฌ๋ค์ ํต๋ก ๊ด๊ณ๊ฐ ์ฃผ์ด์ง๋ค. ๋ง์ง๋ง์ค์ X์ K๊ฐ ๊ณต๋ฐฑ์ ๋๊ณ ์ฃผ์ด์ง๋ค.
๋ง์ฝ ๋๋ฌํ ์ ์๋ค๋ฉด -1์ ์ถ๋ ฅํ๋ค.
(1<=N, M<=100), (1<=K<=100)
์ ๋ ฅ์์
5 7
1 2
1 3
1 4
2 4
3 4
3 5
4 5
4 5
์ถ๋ ฅ์์
3
โ๏ธ ์์๋ ์๊ฐ
50min
โจ ์๋ ์ฝ๋
์ด์ ๊ท ํธ๋ ๋ฌธ์ ๋ BFS๋ก ์ต๋จ๊ฑฐ๋ฆฌ๋ฅผ ํ์ฉํ์ฌ ํ์์ต๋๋ค. ์ฆ ์ธ์ ๋ฆฌ์คํธ๋ฅผ ํ์ฉํด ๋ฌธ์ ๋ฅผ ํ์๋๋ฐ์, ์ด ๋ฌธ์ ๋ ๋ชจ๋ ํต๋ก์ ๊ฐ์ค์น๊ฐ 1์ด๋ผ BFS๋ก๋ ํ ์ ์์๊ฒ ๊ฐ์ง๋ง, ๋ค๋ฅด๊ฒ ํ์ด๋ณด๊ธฐ ์ํด ๊ฑฐ์ณ๊ฐ๋ ์ต๋จ๊ฒฝ๋ก ์๊ณ ๋ฆฌ์ฆ ํ๋ก์ด๋์์ ์ ํ์ฉํด ๋ณด์์ต๋๋ค.
ํ๋ฃจ์ด๋ ์์ ์ ์๊ฐ๋ณด๋ค ๊ฐ๋จํ ๋์ ๋ฐฐ์ด ์๊ณ ๋ฆฌ์ฆ์ ์ผ์ข ์ธ๋ฐ,
์ธ์ ํ๋ ฌ์ ํ์ฉํ์ฌ ์ถ๋ฐ๋ ธ๋์ ๋์ฐฉ๋ ธ๋๋ฅผ ๋ชจ๋ N๋ฒ์ฉ ๋์๊ฐ๋ฉฐ ์ต์ํ์ ๊ฑฐ๋ฆฌ๋ฅผ ๊ตฌํ๋๋ฐ, ์ด๋ ์ ์ผ ๋ฐ๊นฅ ๋ฐ๋ณต๋ฌธ K๋ฅผ ํ์ฉํด ์ถ๋ฐ๊ณผ ๋์ฐฉ๋ ธ๋ ์ฌ์ด์ ๋ค๋ฅธ๋ ธ๋ ํ๋๋ฅผ ์ถ๊ฐํด ์ ๋ฐ์ดํธํด ๋๊ฐ๋ ๋ฐฉ์์ ๋๋ค.
์ฆ 1๊ณผ 3์ ๊ฐ์ค์น๊ฐ 3์ธ๋ฐ 1->2->3์ด 2๋ผ๋ฉด 1๊ณผ2, 2์3์ ๊ฐ์ค์น์ ํฉ์ผ๋ก 1->3์ ๊ฐ์ค์น๋ฅผ ๋ฎ์ด์์ฐ๋ ๋๋์ ๋๋ค.
๋ฐ๋ผ์ ์๊ฐ๋ณต์ก๋๋ ๋ฐ๋ณต๋ฌธ 3๋ฒ N^3์ผ ๊ฒ์ ๋๋ค.