結果

問題 No.1424 Ultrapalindrome
ユーザー yakamotoyakamoto
提出日時 2021-03-12 21:40:26
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 4,883 bytes
コンパイル時間 15,331 ms
コンパイル使用メモリ 467,396 KB
実行使用メモリ 104,648 KB
最終ジャッジ日時 2024-10-14 11:57:15
合計ジャッジ時間 29,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
50,084 KB
testcase_01 AC 269 ms
50,072 KB
testcase_02 AC 264 ms
50,028 KB
testcase_03 AC 258 ms
49,944 KB
testcase_04 AC 271 ms
49,968 KB
testcase_05 WA -
testcase_06 AC 265 ms
49,944 KB
testcase_07 AC 265 ms
50,080 KB
testcase_08 WA -
testcase_09 AC 502 ms
71,796 KB
testcase_10 AC 487 ms
71,620 KB
testcase_11 AC 463 ms
67,000 KB
testcase_12 AC 532 ms
71,876 KB
testcase_13 AC 424 ms
57,576 KB
testcase_14 AC 466 ms
67,452 KB
testcase_15 AC 279 ms
50,240 KB
testcase_16 AC 469 ms
64,796 KB
testcase_17 AC 482 ms
67,304 KB
testcase_18 AC 447 ms
61,844 KB
testcase_19 AC 473 ms
67,400 KB
testcase_20 AC 397 ms
56,096 KB
testcase_21 AC 461 ms
65,108 KB
testcase_22 AC 428 ms
59,824 KB
testcase_23 AC 392 ms
54,120 KB
testcase_24 AC 398 ms
55,892 KB
testcase_25 AC 391 ms
55,340 KB
testcase_26 AC 495 ms
70,148 KB
testcase_27 WA -
testcase_28 AC 518 ms
77,084 KB
testcase_29 WA -
testcase_30 AC 527 ms
77,476 KB
testcase_31 AC 533 ms
78,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:211: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:215: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:219: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:223: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:225: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:232: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:239: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:256: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
/**
 * (dist, parent, queue)
 * @param rt ルートノードを指定する。nullの場合は全ノード辿るまで繰り返す
 */
fun traceBfs(g: Array<IntArray>, rt: Int? = 0): Array<IntArray> {
  val n = g.size
  val q = IntArray(n)
  val d = IntArray(n)
  val p = IntArray(n){-2}
  var h = 0
  var t = 0

  fun bfs(rt: Int) {
    p[rt] = -1
    q[t++] = rt
    d[rt] = 0
    while (h < t) {
      val v = q[h++]
      for (i in g[v].indices) { // List<Int>に変更したときこちらの方法でないとiterator生成して遅くなる
        val u = g[v][i]
        if (p[u] == -2) {
          p[u] = v
          q[t++] = u
          d[u] = d[v] + 1
        }
      }
    }
  }

  if (rt != null) {
    bfs(rt)
  } else {
    for (v in 0 until n) {
      if (p[v] != -2) continue
      bfs(v)
    }
  }
  return arrayOf(d, p, q)
}

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
}
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  private val reader = BufferedReader(InputStreamReader(stream), 32768)

  private val N = ni()
  fun solve() {
    val th = Thread(null, Runnable {
      _solve()
    },"solve", 1 shl 26)
    th.start()
    th.join()
  }
  
  fun _solve() {
    out.println(if (solve2()) "Yes" else "No")
  }
  
  fun solve2(): Boolean {
    val (from, to) = na2(N - 1, -1)
    val g = packUGraph(N, from, to)
    
    val leaf = g.count { it.size == 1 }
    if (leaf == 2) return true
    
    val s = g.indexOfFirst { it.size == 1 }
    
    val path = mutableListOf<Int>()
    fun dfs(v: Int, par: Int): Boolean {
      path += v
      if (v != s && g[v].size == 1) return true

      for (u in g[v]) {
        if (u == par) continue
        if (dfs(u, v)) return true
      }

      return false
    }


    dfs(s, -1)

    debug{"$path"}
    if (path.size%2 == 0) return false
    val rt = path[path.size/2]
    debug{"rt:$rt"}
    val (dist, _, _) = traceBfs(g, rt)

    var ok = true
    for (v in 0 until N) {
      if (g[v].size == 1) {
        ok = ok && dist[v] == dist[s]
      }
    }
    return ok
  }













































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

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0