結果
問題 | No.3063 幅優先探索 |
ユーザー | 箱星 |
提出日時 | 2020-04-01 21:42:23 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,795 bytes |
コンパイル時間 | 14,793 ms |
コンパイル使用メモリ | 444,608 KB |
実行使用メモリ | 93,724 KB |
最終ジャッジ日時 | 2024-06-27 10:08:19 |
合計ジャッジ時間 | 16,764 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 271 ms
49,740 KB |
testcase_01 | AC | 274 ms
49,708 KB |
testcase_02 | AC | 273 ms
49,704 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 564 ms
93,724 KB |
testcase_08 | AC | 275 ms
49,640 KB |
testcase_09 | AC | 270 ms
49,680 KB |
testcase_10 | AC | 277 ms
49,564 KB |
コンパイルメッセージ
Main.kt:43:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
import java.io.BufferedReader import java.io.InputStream import java.io.InputStreamReader import java.io.PrintWriter import java.lang.StringBuilder import java.util.* fun PrintWriter.solve(sc: FastScanner) { val h = sc.nextInt() val w = sc.nextInt() val sy = sc.nextInt() - 1 val sx = sc.nextInt() - 1 val gy = sc.nextInt() - 1 val gx = sc.nextInt() - 1 val map = Array(h) { Array(w) { '.' } } for (i in 0 until h) { val s = sc.nextLine() for (j in 0 until w) { map[i][j] = s[j] } } val visited = Array(h) { Array(w) { false } } val que: Queue<Triple<Int, Int, Int>> = ArrayDeque() que.add(Triple(sy, sx, 0)) val d = arrayOf(1, 0, -1, 0, 1) while (que.count() > 0) { val (i, j, step) = que.poll() if (i == gy && j == gx) { println(step) return } for (k in 0 until 4) { val ny = i + d[k] val nx = j + d[k + 1] if (ny in 0 until h && nx in 0 until w && !visited[ny][nx] && map[ny][nx] == '.') { visited[ny][nx] = true que.add(Triple(ny, nx, step + 1)) } } } } fun main(args: Array<String>) { val writer = PrintWriter(System.out, false) writer.solve(FastScanner(System.`in`)) writer.flush() } class FastScanner(s: InputStream) { private var st = StringTokenizer("") private val br = BufferedReader(InputStreamReader(s)) fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() fun ready() = br.ready() }