結果
問題 | No.34 砂漠の行商人 |
ユーザー | バカらっく |
提出日時 | 2019-09-07 15:43:37 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,575 bytes |
コンパイル時間 | 15,373 ms |
コンパイル使用メモリ | 457,796 KB |
実行使用メモリ | 107,920 KB |
最終ジャッジ日時 | 2024-06-26 20:37:33 |
合計ジャッジ時間 | 27,973 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 313 ms
55,260 KB |
testcase_01 | AC | 313 ms
57,308 KB |
testcase_02 | AC | 369 ms
54,800 KB |
testcase_03 | AC | 460 ms
62,844 KB |
testcase_04 | AC | 638 ms
89,740 KB |
testcase_05 | AC | 612 ms
89,700 KB |
testcase_06 | AC | 376 ms
55,744 KB |
testcase_07 | AC | 745 ms
101,156 KB |
testcase_08 | AC | 848 ms
107,920 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^ Main.kt:47:40: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int ans = step[gy][gx].values.min()!! ^
ソースコード
import java.util.* fun main(arr:Array<String>) { val inpt = readLine()!!.trim().split(" ").map { it.toInt() } val (n, v) = inpt.take(2) val (sx, sy, gx, gy) = inpt.drop(2).map { it - 1 } val map = (1..n).map { readLine()!!.split(" ").map { it.toInt() }.toTypedArray() }.toTypedArray() val step = map.map { it.map { mutableMapOf<Int, Int>() }.toTypedArray() }.toTypedArray() val queue = LinkedList<Task>() queue.add(Task(sx, sy, v, 0)) while (queue.isNotEmpty()) { val t = queue.pop() if(t.vital <= 0) { continue } var skip = false step[t.y][t.x][t.vital]?.also { if(it <= t.step) { skip = true } } if(skip) { continue } else { step[t.y][t.x][t.vital] = t.step } if(t.x == gx && t.y == gy) { continue } if(t.y > 0) { queue.add(Task(t.x, t.y - 1, t.vital - map[t.y - 1][t.x], t.step + 1)) } if(t.y < n - 1) { queue.add(Task(t.x, t.y + 1, t.vital - map[t.y + 1][t.x], t.step + 1)) } if(t.x > 0) { queue.add(Task(t.x - 1, t.y, t.vital - map[t.y][t.x - 1], t.step + 1)) } if(t.x < n - 1) { queue.add(Task(t.x + 1, t.y, t.vital - map[t.y][t.x + 1], t.step + 1)) } } var ans = -1 if(step[gy][gx].isNotEmpty()) { ans = step[gy][gx].values.min()!! } println(ans) } data class Task(val x:Int, val y:Int, val vital:Int, val step:Int)