[白俊2178]探索迷宮
1.問題の説明
迷宮を探る
2.問題分析
BFSにより、始点から終点まで最高料金を得ることができます.
BFSにより、始点から終点まで最高料金を得ることができます.
zip
をどのように表現しますか?3.私の回答 import Foundation
let input:[Int] = readLine()!.split(separator: " ").map{Int($0)!}
let (N, M) = (input[0], input[1])
let dx:[Int] = [1, -1, 0, 0]
let dy:[Int] = [0, 0, 1, -1]
var nodes: [[Int]] = Array(repeating: [], count: N)
for i in 0..<N{
let line = Array(readLine()!).map{Int(String($0))!}
nodes[i] = line
// 인접 행렬 구현
}
let answer = BFS()
print(answer)
func BFS()->Int {
var queue: [[Int]] = [[0, 0, 1]]
nodes[0][0] = 0
var answer: Int = 0
while queue.isEmpty == false {
let curNode = queue.removeFirst()
let (curRow, curCol, curCost) = (curNode[0], curNode[1], curNode[2])
if curRow == N-1 && curCol == M-1{
answer = curCost
break
// 도착지 방문 시 비용 리턴
}
for i in 0..<4{
let x = dx[i]
let y = dy[i]
let nextRow = curRow + y
let nextCol = curCol + x
if nextRow < 0 || nextCol < 0 || nextRow >= N || nextCol >= M{
continue
}
if nodes[nextRow][nextCol] == 1{
nodes[nextRow][nextCol] = 0
queue.append([nextRow, nextCol, curCost+1])
// 1 -> 0으로 방문 확인 체크
}
}
}
return answer
}
Reference
この問題について([白俊2178]探索迷宮), 我々は、より多くの情報をここで見つけました
https://velog.io/@j_aion/백준-2178-미로-탐색-re0iadbi
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
import Foundation
let input:[Int] = readLine()!.split(separator: " ").map{Int($0)!}
let (N, M) = (input[0], input[1])
let dx:[Int] = [1, -1, 0, 0]
let dy:[Int] = [0, 0, 1, -1]
var nodes: [[Int]] = Array(repeating: [], count: N)
for i in 0..<N{
let line = Array(readLine()!).map{Int(String($0))!}
nodes[i] = line
// 인접 행렬 구현
}
let answer = BFS()
print(answer)
func BFS()->Int {
var queue: [[Int]] = [[0, 0, 1]]
nodes[0][0] = 0
var answer: Int = 0
while queue.isEmpty == false {
let curNode = queue.removeFirst()
let (curRow, curCol, curCost) = (curNode[0], curNode[1], curNode[2])
if curRow == N-1 && curCol == M-1{
answer = curCost
break
// 도착지 방문 시 비용 리턴
}
for i in 0..<4{
let x = dx[i]
let y = dy[i]
let nextRow = curRow + y
let nextCol = curCol + x
if nextRow < 0 || nextCol < 0 || nextRow >= N || nextCol >= M{
continue
}
if nodes[nextRow][nextCol] == 1{
nodes[nextRow][nextCol] = 0
queue.append([nextRow, nextCol, curCost+1])
// 1 -> 0으로 방문 확인 체크
}
}
}
return answer
}
Reference
この問題について([白俊2178]探索迷宮), 我々は、より多くの情報をここで見つけました https://velog.io/@j_aion/백준-2178-미로-탐색-re0iadbiテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol