結果

問題 No.1647 Travel in Mitaru city 2
ユーザー yakamotoyakamoto
提出日時 2021-08-14 15:54:59
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 5,282 bytes
コンパイル時間 22,234 ms
コンパイル使用メモリ 468,220 KB
実行使用メモリ 96,348 KB
最終ジャッジ日時 2024-04-15 13:55:31
合計ジャッジ時間 80,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 372 ms
55,704 KB
testcase_01 AC 319 ms
50,332 KB
testcase_02 AC 370 ms
55,748 KB
testcase_03 AC 392 ms
55,812 KB
testcase_04 AC 462 ms
58,832 KB
testcase_05 AC 385 ms
55,872 KB
testcase_06 AC 393 ms
56,064 KB
testcase_07 AC 478 ms
59,396 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 J_TLE -
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 334 ms
56,672 KB
testcase_44 AC 421 ms
68,824 KB
testcase_45 AC 844 ms
93,284 KB
testcase_46 AC 912 ms
91,436 KB
testcase_47 AC 884 ms
93,388 KB
testcase_48 AC 887 ms
93,228 KB
testcase_49 AC 840 ms
95,768 KB
testcase_50 AC 858 ms
92,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()}
          ^

ソースコード

diff #

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()
0