結果
問題 | No.2136 Dice Calendar? |
ユーザー | CuriousFairy315 |
提出日時 | 2022-11-22 20:24:08 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 2,992 ms / 5,000 ms |
コード長 | 2,374 bytes |
コンパイル時間 | 14,545 ms |
コンパイル使用メモリ | 445,940 KB |
実行使用メモリ | 288,692 KB |
最終ジャッジ日時 | 2024-09-23 04:50:32 |
合計ジャッジ時間 | 39,422 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 356 ms
57,936 KB |
testcase_01 | AC | 351 ms
57,724 KB |
testcase_02 | AC | 407 ms
59,952 KB |
testcase_03 | AC | 351 ms
57,852 KB |
testcase_04 | AC | 355 ms
57,692 KB |
testcase_05 | AC | 368 ms
57,784 KB |
testcase_06 | AC | 365 ms
57,804 KB |
testcase_07 | AC | 380 ms
57,920 KB |
testcase_08 | AC | 387 ms
57,744 KB |
testcase_09 | AC | 400 ms
60,020 KB |
testcase_10 | AC | 412 ms
60,020 KB |
testcase_11 | AC | 441 ms
62,820 KB |
testcase_12 | AC | 524 ms
67,080 KB |
testcase_13 | AC | 460 ms
63,416 KB |
testcase_14 | AC | 524 ms
69,956 KB |
testcase_15 | AC | 674 ms
93,372 KB |
testcase_16 | AC | 750 ms
123,892 KB |
testcase_17 | AC | 712 ms
119,876 KB |
testcase_18 | AC | 1,216 ms
189,336 KB |
testcase_19 | AC | 1,359 ms
204,324 KB |
testcase_20 | AC | 1,684 ms
214,436 KB |
testcase_21 | AC | 1,942 ms
244,476 KB |
testcase_22 | AC | 2,347 ms
276,844 KB |
testcase_23 | AC | 2,992 ms
288,692 KB |
testcase_24 | AC | 525 ms
181,212 KB |
testcase_25 | AC | 685 ms
187,344 KB |
testcase_26 | AC | 2,491 ms
279,768 KB |
ソースコード
import java.util.* fun main() { Scanner(System.`in`).use { sc -> val N = sc.nextInt() val S = Array(N) { IntArray(6) { sc.nextInt() - 1 } } val MOD = 998_244_353 val factorial = LongArray(N + 1) { 1L } (1..N).forEach { factorial[it] = factorial[it - 1] * it } /** 多重集合を管理、初期値は0要素の多重集合 */ val queue = mutableListOf(0b111111111) val uniqueCheck = BitSet(1 shr N + 9) // 64MB程度 for (dice in S) { // diceを追加した新しい多重集合を求める val checkQueue = queue.toList() queue.clear() checkQueue.forEach { next(it, dice, uniqueCheck, queue) } uniqueCheck.clear() } val ans = queue.map { multichoose(factorial, it) }.fold(0L) { l, r -> (l + r) % MOD } println(ans) } } val deBrujin32 = intArrayOf(0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8, 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9) fun numberOfTrailingZeros(i: Int) = if (i == 0) 32 else deBrujin32[i * 0x077CB531 ushr 27] // 丁度1bit立っている値に対してその立っている位置を返す fun calcPartition(multiSet: Int): Long { // 与えられた多重集合に対して、立っているbitの位置を保持する数列Pを返す var x = multiSet var partition = 0L for (i in 1..9) { val lob = x and -x partition += 1L + numberOfTrailingZeros(lob) shl i * 5 x -= lob } return partition } fun getPartition(partition: Long, index: Int) = // multiSetでindex番目に立っているbitの位置を求める (partition shr 5 * index and 31).toInt() fun multichoose(factorial: LongArray, multiSet: Int): Long { // multiSetで与えられた多重集合を並べてできる組合せ val partition = calcPartition(multiSet) var multichoose = factorial[getPartition(partition, 9) - 9] for (i in 0..8) multichoose /= factorial[getPartition(partition, i + 1) - getPartition(partition, i) - 1] return multichoose } fun next(multiSet: Int, dice: IntArray, set: BitSet, queue: MutableList<Int>) { // diceを追加したときにできる新たな多重集合のうち、新しく発見したものをqueueに入れる val partition = calcPartition(multiSet) for (result in dice) { val mask = (1 shl getPartition(partition, result)) - 1 val next = (multiSet and mask.inv()) shl 1 or (multiSet and mask) if (!set[next]) { set.set(next) queue.add(next) } } }