結果

問題 No.1103 Directed Length Sum
ユーザー yakamotoyakamoto
提出日時 2020-07-03 22:12:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,228 ms / 3,000 ms
コード長 3,678 bytes
コンパイル時間 17,860 ms
コンパイル使用メモリ 455,168 KB
実行使用メモリ 129,820 KB
最終ジャッジ日時 2024-09-17 02:36:04
合計ジャッジ時間 38,748 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
57,588 KB
testcase_01 AC 310 ms
57,556 KB
testcase_02 AC 1,011 ms
124,284 KB
testcase_03 AC 987 ms
129,820 KB
testcase_04 AC 920 ms
107,832 KB
testcase_05 AC 1,228 ms
120,216 KB
testcase_06 AC 754 ms
95,772 KB
testcase_07 AC 607 ms
83,468 KB
testcase_08 AC 596 ms
91,524 KB
testcase_09 AC 542 ms
75,036 KB
testcase_10 AC 657 ms
91,452 KB
testcase_11 AC 906 ms
100,408 KB
testcase_12 AC 792 ms
104,048 KB
testcase_13 AC 672 ms
91,396 KB
testcase_14 AC 521 ms
71,228 KB
testcase_15 AC 715 ms
95,896 KB
testcase_16 AC 1,057 ms
113,376 KB
testcase_17 AC 1,034 ms
113,240 KB
testcase_18 AC 665 ms
91,436 KB
testcase_19 AC 920 ms
98,520 KB
testcase_20 AC 564 ms
79,128 KB
testcase_21 AC 654 ms
92,516 KB
testcase_22 AC 864 ms
112,352 KB
testcase_23 AC 728 ms
93,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L
/**
 * (dist, parent, queue)
 */
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 cur = 0
  var last = 1
  p[rt] = -1
  q[0] = rt
  d[rt] = 0
  while (cur < last) {
    val v = q[cur++]
    for (u in g[v]) {
      if (p[u] == -2) {
        p[u] = v
        q[last++] = u
        d[u] = d[v] + 1
      }
    }
  }
  return arrayOf(d, p, q)
}
fun packDGraph(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]]
  }
  val g = Array(n){IntArray(p[it])}
  for (i in 0 until m) {
    g[from[i]][--p[from[i]]] = to[i]
  }
  return g
}
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val (from, to) = na2(N - 1, -1)
    val g = packDGraph(N, from, to)
    val flg = BooleanArray(N){true}
    for (i in 0 until N - 1) {
      flg[to[i]] = false
    }
    val rt = flg.indexOf(true)
    val (_, par, que) = traceBfs(g, rt)
    val dpCnt = IntArray(N){1}
    val dpV = LongArray(N)
    for (i in N - 1 downTo 0) {
      val u = que[i]
      for (v in g[u]) {
        if (par[u] == v) continue
        dpCnt[u] += dpCnt[v]
        dpV[u] = (dpV[u] + dpV[v] + dpCnt[v]) % MOD
      }
    }
    debug(dpCnt)
    debug(dpV)
    out.println(dpV.sum() % MOD)
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  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 map(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 map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

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