結果

問題 No.1112 冥界の音楽
ユーザー yakamotoyakamoto
提出日時 2020-07-10 21:42:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 3,744 bytes
コンパイル時間 17,878 ms
コンパイル使用メモリ 456,008 KB
実行使用メモリ 56,144 KB
最終ジャッジ日時 2024-04-19 16:28:50
合計ジャッジ時間 31,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
54,508 KB
testcase_01 AC 329 ms
54,684 KB
testcase_02 AC 328 ms
54,456 KB
testcase_03 AC 328 ms
54,476 KB
testcase_04 AC 326 ms
54,400 KB
testcase_05 AC 325 ms
54,444 KB
testcase_06 AC 334 ms
54,612 KB
testcase_07 AC 332 ms
54,304 KB
testcase_08 AC 330 ms
54,420 KB
testcase_09 AC 328 ms
54,416 KB
testcase_10 AC 326 ms
54,484 KB
testcase_11 AC 330 ms
54,484 KB
testcase_12 AC 322 ms
54,272 KB
testcase_13 AC 341 ms
54,596 KB
testcase_14 AC 392 ms
55,164 KB
testcase_15 AC 351 ms
54,880 KB
testcase_16 AC 325 ms
54,476 KB
testcase_17 AC 356 ms
54,752 KB
testcase_18 AC 358 ms
54,968 KB
testcase_19 AC 329 ms
54,680 KB
testcase_20 AC 335 ms
54,700 KB
testcase_21 AC 382 ms
55,400 KB
testcase_22 AC 387 ms
55,096 KB
testcase_23 AC 349 ms
55,024 KB
testcase_24 AC 320 ms
54,528 KB
testcase_25 AC 320 ms
54,572 KB
testcase_26 AC 322 ms
54,476 KB
testcase_27 AC 323 ms
54,360 KB
testcase_28 AC 331 ms
54,516 KB
testcase_29 AC 325 ms
54,628 KB
testcase_30 AC 362 ms
55,248 KB
testcase_31 AC 341 ms
54,536 KB
testcase_32 AC 362 ms
55,324 KB
testcase_33 AC 336 ms
54,696 KB
testcase_34 AC 339 ms
54,364 KB
testcase_35 AC 335 ms
54,492 KB
testcase_36 AC 435 ms
56,144 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_007
fun powMat(a: Array<LongArray>, n: Long, mod: Int): Array<LongArray> {
  if (n == 1L) return a
  val res = powMat(mulMat(a, a, mod), n / 2, mod)
  return if (n % 2 == 1L) mulMat(res, a, mod) else res
}

fun mulMat(a: Array<LongArray>, b: Array<LongArray>, mod: Int): Array<LongArray> {
  assert(a[0].size == b.size)
  val len = a[0].size
  val h = a.size
  val w = b[0].size
  val res = Array(h){LongArray(w)}
  val th = 7e18.toLong()
  for (i in 0 until h) {
    for (j in 0 until w) {
      var v = 0L
      for (k in 0 until len) {
        v += a[i][k] * b[k][j]
        if (v > th) v %= mod
      }
      res[i][j] = if (v >= mod) v % mod else v
    }
  }
  return res
}
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val K = ni()
    val M = ni()
    val N = nl()
    val A = Array(K * K){LongArray(K * K)}
    val s = Array(K * K){ LongArray(1) }
    for (i in 0 until M) {
      val p = ni() - 1
      val q = ni() - 1
      val r = ni() - 1
      A[q * K + r][p * K + q]++
      if (p == 0) {
        s[q * K + r][0]++
      }
    }

    if (N == 3L) {
      out.println(s.withIndex().filter { it.index % K == 0 }.map{it.value[0]}.sum() % MOD)
      return
    }

    val B = powMat(A, N - 3, MOD)
    debug{"A"}
    debugDim(A)
    debug{"B"}
    debugDim(B)
    debug{"s"}
    debugDim(s)
    val ans = mulMat(B, s, MOD)
    out.println(ans.withIndex().filter { it.index % K == 0 }.map{it.value[0]}.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