-
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
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.
์ค ์ด๊ฒ ํ๋ก์ด๋-์์ฌ
์๊ณ ๋ฆฌ์ฆ์ด๊ตฐ์ ๋ค์์๋ ์ด ์๊ณ ๋ฆฌ์ฆ ์จ๋ด์ผ๊ฒ ๋ค์...
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.
์ ๋ ํ๋ก์ด๋ ์์ฌ์ ์ ๋ชฐ๋ผ์ bfs๋ฅผ ์ฌ์ฉํ์ฌ ํ์์ต๋๋ค. ๊ทผ๋ฐ ํ์ด๋ฅผ ๋ณด๋ ๋ง์ฝ ๊ฐ์ค์น๊ฐ ๋ชจ๋ ๋ค๋ฅธ ๊ฐ์ด ์ฃผ์ด์ง๋ค๋ฉด ์์ฒญ ํค๋งธ์ ๊ฒ ๊ฐ๋ค์..
๊ธฐ์กด bfs๋ก์ง์ ์๋ก์ด ๊ฑธ ์ถ๊ฐํด์ผํ๋ ์๊ฐํ๋๋ฐ ๊ตฌํํ๋ค ๋ณด๋ ํ๋์ bfs๋ฅผ ๋๋ฒ ์ฌ์ฉํ๋ฉด ๋ ๊ฑฐ๊ฐ๋ค๋ ์๊ฐ์ ๊ฝค๋ ๊ธ๋ฐฉ ํ ์ ์์๋ ๋ฌธ์ ์์ต๋๋ค.
๋ค๋ง bfs ๊ตฌํํ ๋ ์ฃผ์ํ ๊ฒ์ด ๊ฐ์ ํจ์๋ฅผ ๋๋ฒ ์ฌ์ฉํ๊ธฐ์ visited
์ queue
๋ฅผ ์๋ก์ด ๋งค๋ฒ ์ด๊ธฐํํด์ผ ํด์ ๊ทธ ๋ถ๋ถ์ด ์กฐ๊ธ ํท๊ฐ๋ ธ๋ค์. ์ฐธ๊ณ ๋ก graph
๋ ์ธ์ ๋ฆฌ์คํธ๋ก ๊ตฌํํ์ต๋๋ค
int bfs(int start, int dest) {
if (start == dest) return 0;
int distance = 0;
bool visited[101] = {false};
queue<int> q;
visited[start] = true;
q.push(start);
while (!q.empty()) {
int size = q.size();
while (size--) {
int cur = q.front();
q.pop();
for (int adj: graph[cur]) {
if (adj == dest) return ++distance;
if (!visited[adj]) {
visited[adj] = true;
q.push(adj);
}
}
}
distance++;
}
return -1;
}
์ค์ฉ๋๊ณผ ๋ค๋ฅธ pr์ ๊ทผํธ๋ ๋ฆฌ๋ทฐ๋ฅผ ํตํด ํ๋ก์ด๋ ์์ฌ์ ๋ฐฐ์ธ ์ ์์์ต๋๋ค. :) ๋ค์ ์ต๋จ ๊ฒฝ๋ก ๋ฌธ์ ๋ฅผ ํ ๋ ์จ๋จน์ด์ผ๊ฒ ์ด์.
์ ๋ฒ์ ์ฌ์ฉํด๋ณธ ํ๋ก์ด๋-์์ฌ ์๊ณ ๋ฆฌ์ฆ์ ๋ค์ ํ์ฉํด๋ณผ ์ ์๋ ๋ฌธ์ ์์ต๋๋ค. Java code import java.util.*;
public class Main {
static int INF = (int) 1e9;
static int[][] graph;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int M = sc.nextInt();
graph = new int[N+1][N+1];
for (int i = 0; i <= N; i++) {
Arrays.fill(graph[i], INF);
graph[i][i] = 0;
}
for (int i = 0; i < M; i++) {
int a = sc.nextInt();
int b = sc.nextInt();
graph[a][b] = 1;
graph[b][a] = 1;
}
int X = sc.nextInt();
int K = sc.nextInt();
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N; j++) {
for (int k = 1; k <= N; k++) {
graph[i][j] = Math.min(graph[i][j], graph[i][k] + graph[k][j]);
}
}
}
int result = graph[1][K] + graph[K][X];
if (result >= INF) {
System.out.println(-1);
} else {
System.out.println(result);
}
}
} |
๐ ๋ฌธ์ ๋งํฌ
์ด๊ฒ์ด ์ฝ๋ฉํ ์คํธ๋ค ์ค์ ๋ฌธ์ ์ค 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์ผ ๊ฒ์ ๋๋ค.