Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 9375번
- 2D슈팅게임
- Lv.3
- 백준 c++ 9375번
- LayerMark
- pccp 기출문제 1번
- C#
- 양과 늑대
- Lv2
- CSharp #자료구조
- dfs
- pccp 기출문제 2번
- dp 알고리즘
- Algorithm
- 프로그래머스
- 유니티
- 충돌위험 찾기
- Back Tracking
- 플레이어 이동
- 오브젝트 풀링
- 미로 탈출 명령어
- 연속 펄스 부분 수열의 합
- heap tree
- Ainimation Blending
- Hp바
- pccp 기출문제 3번
- 플레이어 방향전환
- Blend Type
- Animation State Machine
- Unity
Archives
- Today
- Total
주녘공부일지
[프로그래머스 C#] Lv.3 부대 복귀 본문
https://school.programmers.co.kr/learn/courses/30/lessons/132266
1. 정답코드 및 핵심 아이디어, 유의사항
주어진 병사들의 위치에서 도착지(강철부대)까지의 최단거리를 구하는 문제
- 어느 지역에 있는 병사라도 결국 도착지로 이동해야 함
-> 도착지를 기준으로 갈 수 있는 모든 지역에 대한 최단 거리를 구함
- 정점과 간선으로 봤을 때, 가중치는 무조건 1
https://godgjwnsgur7.tistory.com/47
주석 참조
using System;
using System.Collections.Generic;
public class Solution
{
public int[] solution(int n, int[,] roads, int[] sources, int destination)
{
int[] answer = new int[sources.Length];
var intArray = new int[n]; // 최단거리 배열 (갈 수 없는 지역 : -1)
var dict = new Dictionary<int, List<int>>(); // 간선 그래프
// 초기 값 세팅
for (int i = 1; i <= n; i++)
{
intArray[i] = -1; // 세팅 전
dict.Add(i, new List<int>());
}
// 간선 그래프 세팅
for (int i = 0; i < roads.GetLength(0); i++)
{
dict[roads[i, 0]].Add(roads[i, 1]);
dict[roads[i, 1]].Add(roads[i, 0]);
}
// 부대위치로부터 각 지역에 가는 최단 거리를 구함
var queue = new Queue<int>();
queue.Enqueue(destination);
intArray[destination] = 0;
// BFS 탐색
while (queue.Count > 0)
{
int currNum = queue.Dequeue(); // 현재 지역
foreach (int moveNum in dict[currNum]) // 이동 지역
{
// 최단 거리가 입력되지 않은 지역이라면
if (intArray[moveNum] == -1)
{
// 최단 거리 세팅 (가중치는 무조건 1)
intArray[moveNum] = intArray[currNum] + 1;
queue.Enqueue(moveNum); // 탐색 대상
}
}
}
// 병사 위치에 따라 부대 복귀하는 최단 거리 세팅
for (int i = 0; i < sources.Length; i++)
answer[i] = intArray[sources[i]];
return answer;
}
}
'CodingTest > Programmers Lv.3' 카테고리의 다른 글
[프로그래머스 C#] Lv.3 표 병합 (0) | 2024.02.29 |
---|---|
[프로그래머스 C#] Lv.3 / 2차원 동전 뒤집기 (1) | 2024.02.28 |
[프로그래머스 C#] Lv.3 아이템 줍기 (0) | 2024.02.21 |
[프로그래머스 C#] Lv.3 등대 (0) | 2024.02.19 |
[프로그래머스 C#] Lv.3 110 옮기기 (0) | 2024.02.18 |