結果

問題 No.1958 Bit Game
ユーザー yakamotoyakamoto
提出日時 2022-05-27 22:19:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 4,719 bytes
コンパイル時間 19,029 ms
コンパイル使用メモリ 460,952 KB
実行使用メモリ 65,128 KB
最終ジャッジ日時 2023-10-20 20:25:48
合計ジャッジ時間 40,004 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 644 ms
64,960 KB
testcase_01 AC 617 ms
64,960 KB
testcase_02 AC 651 ms
65,096 KB
testcase_03 AC 628 ms
65,044 KB
testcase_04 AC 580 ms
65,004 KB
testcase_05 AC 636 ms
65,128 KB
testcase_06 AC 641 ms
64,932 KB
testcase_07 AC 625 ms
64,936 KB
testcase_08 AC 610 ms
65,096 KB
testcase_09 AC 614 ms
64,840 KB
testcase_10 AC 458 ms
57,632 KB
testcase_11 AC 513 ms
58,324 KB
testcase_12 AC 516 ms
61,916 KB
testcase_13 AC 554 ms
60,164 KB
testcase_14 AC 506 ms
59,892 KB
testcase_15 AC 612 ms
62,956 KB
testcase_16 AC 532 ms
60,160 KB
testcase_17 AC 594 ms
63,000 KB
testcase_18 AC 613 ms
62,852 KB
testcase_19 AC 568 ms
60,348 KB
testcase_20 AC 525 ms
60,516 KB
testcase_21 AC 605 ms
62,840 KB
testcase_22 AC 478 ms
58,144 KB
testcase_23 AC 501 ms
60,596 KB
testcase_24 AC 544 ms
62,108 KB
testcase_25 AC 510 ms
61,008 KB
testcase_26 AC 518 ms
60,412 KB
testcase_27 AC 612 ms
62,704 KB
testcase_28 AC 561 ms
62,596 KB
testcase_29 AC 447 ms
57,772 KB
testcase_30 AC 266 ms
51,684 KB
testcase_31 AC 259 ms
51,680 KB
testcase_32 AC 260 ms
51,700 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:177: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:181: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:185: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:189: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:191: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:198: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:205: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:222: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 = 998244353
fun powMat(a: Array<LongArray>, n: Long, mod: Int): Array<LongArray> {
  fun I() = run {
    Array(a.size){
      val res = LongArray(a.size)
      res[it] = 1
      res
    }
  }

  if (n == 0L) return I()
  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
}
fun powMod(a: Long, n: Long, mod: Int): Long {
  if (n == 0L) return 1
  val res = powMod(a * a % mod, n / 2, mod)
  return if (n % 2 == 1L) res * a % mod else res
}
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  private val reader = BufferedReader(InputStreamReader(stream), 32768)

  fun solve() {
    val N = nl()
    val (X, Y) = na(2)
    val A = na(X)
    val B = na(Y)
    var ans = 0L
    for (i in 0 until 20) {
      var x = 0
      var y = 0
      for (j in 0 until X) {
        if (A[j] shr i and 1 == 1) x++
      }
      for (j in 0 until Y) {
        if (B[j] shr i and 1 == 1) y++
      }
      val a = (y.toLong() * (X-x)) % MOD
      val b = y.toLong() * x % MOD
      val mat = arrayOf(
        longArrayOf(a, b),
        longArrayOf(0, X.toLong()*Y.toLong()%MOD)
      )
      val f0 = arrayOf(
        longArrayOf(0),
        longArrayOf(1)
      )
      val An = powMat(mat, N, MOD)
      val vec = mulMat(An, f0, MOD)
      val v = vec[0][0]
      debug{"i:$i v:$v x:$x y:$y"}
      ans = (ans + v * (1L shl i)) % MOD
    }
    out.println(ans)
  }













































  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