結果
問題 | No.1647 Travel in Mitaru city 2 |
ユーザー | yakamoto |
提出日時 | 2021-08-14 15:54:59 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,282 bytes |
コンパイル時間 | 22,145 ms |
コンパイル使用メモリ | 467,604 KB |
実行使用メモリ | 98,560 KB |
最終ジャッジ日時 | 2024-10-05 10:52:49 |
合計ジャッジ時間 | 63,355 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 297 ms
60,312 KB |
testcase_01 | AC | 259 ms
54,400 KB |
testcase_02 | AC | 297 ms
59,852 KB |
testcase_03 | AC | 314 ms
60,352 KB |
testcase_04 | AC | 377 ms
64,284 KB |
testcase_05 | AC | 307 ms
60,388 KB |
testcase_06 | AC | 316 ms
60,156 KB |
testcase_07 | AC | 379 ms
64,288 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | AC | 277 ms
56,248 KB |
testcase_44 | AC | 438 ms
68,404 KB |
testcase_45 | AC | 711 ms
97,568 KB |
testcase_46 | AC | 715 ms
95,772 KB |
testcase_47 | AC | 682 ms
97,252 KB |
testcase_48 | AC | 732 ms
97,280 KB |
testcase_49 | AC | 697 ms
97,628 KB |
testcase_50 | AC | 713 ms
96,796 KB |
コンパイルメッセージ
Main.kt:201:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debug(a: LongArray) { ^ Main.kt:205:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debug(a: IntArray) { ^ Main.kt:209:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debug(a: BooleanArray) { ^ Main.kt:213:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")} ^ Main.kt:215:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debugDim(A: Array<LongArray>) { ^ Main.kt:222:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debugDim(A: Array<IntArray>) { ^ Main.kt:229:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun debugDim(A: Array<BooleanArray>) { ^ Main.kt:246:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()} ^
ソースコード
import java.io.BufferedReader import java.io.InputStream import java.io.InputStreamReader import java.lang.AssertionError import java.util.* import kotlin.math.abs import kotlin.math.max import kotlin.math.min val MOD = 1_000_000_007 fun findCycle(n: Int, m: Int, from: IntArray, to: IntArray): List<Int>? { data class Edge(val i: Int, val v: Int) // 外に出せ val que = IntArray(n + 10) val nodeFlag = IntArray(n) val visitedEdge = BooleanArray(m) val g = Array(n){ mutableListOf<Edge>()} for (i in 0 until m) { g[from[i]].add(Edge(i, to[i])) g[to[i]].add(Edge(i, from[i])) } fun dfs(rt: Int): List<Int>? { fun step(pos: Int, v: Int): List<Int>? { que[pos] = v nodeFlag[v] = 1 for (i in g[v].indices) { val e = g[v][i] if (visitedEdge[e.i]) continue visitedEdge[e.i] = true when(nodeFlag[e.v]) { 1 -> { val ix = que.indexOf(e.v) val ans = mutableListOf<Int>() for (j in ix..pos) { ans += que[j] } return ans } 0 -> { val res = step(pos + 1, e.v) if (res != null) return res } else -> {} } } nodeFlag[v] = 2 return null } return step(0, rt) } for (u in 0 until n) { if (nodeFlag[u] == 0) { val res = dfs(u) if (res != null) return res } } return null } fun packUGraph(n: Int, from: IntArray, to: IntArray): Array<IntArray> { val p = IntArray(n) val m = from.size for (i in 0 until m) { ++p[from[i]] ++p[to[i]] } val g = Array(n){IntArray(p[it])} for (i in 0 until m) { g[from[i]][--p[from[i]]] = to[i] g[to[i]][--p[to[i]]] = from[i] } return g } data class Point(val h: Int, val w: Int) class Solver(stream: InputStream, private val out: java.io.PrintWriter) { private val reader = BufferedReader(InputStreamReader(stream), 32768) fun solve() { val (H, W, M) = na(3) val (from, to) = na2(M, -1) for (i in 0 until M) { to[i] += H } val toP = Array(M){ Pair(Point(from[it], to[it]), it) }.toMap() val cycle = findCycle(H + W, M, from, to) if (cycle == null) { out.println(-1) return } debug{"cycle:$cycle"} val N = cycle.size var i = if (cycle.first() < H) 0 else 1 // Hスタートかどうか val ans = IntArray(N) for (j in 0 until N) { val i2 = (i + 1) % N val p = if (j % 2 == 0) Point(cycle[i], cycle[i2]) else Point(cycle[i2], cycle[i]) debug{"$j $p"} ans[j] = toP[p]!! i = i2 } out.println(N) out.println(ans.map{it+1}.joinToString(" ")) } private val isDebug = try { // なんか本番でエラーでる System.getenv("MY_DEBUG") != null } catch (t: Throwable) { false } private var tokenizer: StringTokenizer? = null private fun next(): String { while (tokenizer == null || !tokenizer!!.hasMoreTokens()) { tokenizer = StringTokenizer(reader.readLine()) } return tokenizer!!.nextToken() } private fun ni() = next().toInt() private fun nl() = next().toLong() private fun ns() = next() private fun na(n: Int, offset: Int = 0): IntArray { return IntArray(n) { ni() + offset } } private fun nal(n: Int, offset: Int = 0): LongArray { val res = LongArray(n) for (i in 0 until n) { res[i] = nl() + offset } return res } private fun na2(n: Int, offset: Int = 0): Array<IntArray> { val a = Array(2){IntArray(n)} for (i in 0 until n) { for (e in a) { e[i] = ni() + offset } } return a } private inline fun debug(msg: () -> String) { if (isDebug) System.err.println(msg()) } /** * コーナーケースでエラー出たりするので、debug(dp[1])のように添え字付きの場合はdebug{}をつかうこと */ private inline fun debug(a: LongArray) { debug { a.joinToString(" ") } } private inline fun debug(a: IntArray) { debug { a.joinToString(" ") } } private inline fun debug(a: BooleanArray) { debug { toString(a) } } private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")} private inline fun debugDim(A: Array<LongArray>) { if (isDebug) { for (a in A) { debug(a) } } } private inline fun debugDim(A: Array<IntArray>) { if (isDebug) { for (a in A) { debug(a) } } } private inline fun debugDim(A: Array<BooleanArray>) { if (isDebug) { for (a in A) { debug(a) } } } /** * 勝手にimport消されるのを防ぎたい */ private fun hoge() { min(1, 2) max(1, 2) abs(-10) } private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()} private inline fun assert(b: Boolean, f: () -> String) = run{if (!b) throw AssertionError(f())} companion object { // TestRunnerから呼びたいので単純なmainじゃだめ fun main() { val out = java.io.PrintWriter(System.out) Solver(System.`in`, out).solve() out.flush() } } } /** * judgeから呼ばれる */ fun main() = Solver.main()