結果

問題 No.1330 Multiply or Divide
ユーザー 箱星箱星
提出日時 2021-01-08 22:22:39
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,510 bytes
コンパイル時間 16,778 ms
コンパイル使用メモリ 454,388 KB
実行使用メモリ 353,308 KB
最終ジャッジ日時 2024-11-16 18:39:48
合計ジャッジ時間 42,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
56,564 KB
testcase_01 TLE -
testcase_02 AC 292 ms
53,076 KB
testcase_03 AC 292 ms
53,164 KB
testcase_04 AC 288 ms
53,144 KB
testcase_05 AC 285 ms
52,996 KB
testcase_06 AC 510 ms
67,084 KB
testcase_07 AC 872 ms
98,196 KB
testcase_08 AC 895 ms
95,884 KB
testcase_09 AC 1,034 ms
118,148 KB
testcase_10 AC 901 ms
95,588 KB
testcase_11 AC 909 ms
93,044 KB
testcase_12 AC 862 ms
95,812 KB
testcase_13 AC 292 ms
53,152 KB
testcase_14 AC 286 ms
53,200 KB
testcase_15 AC 294 ms
53,128 KB
testcase_16 AC 294 ms
53,252 KB
testcase_17 AC 289 ms
53,104 KB
testcase_18 AC 534 ms
77,988 KB
testcase_19 AC 571 ms
78,156 KB
testcase_20 AC 540 ms
78,184 KB
testcase_21 AC 570 ms
78,184 KB
testcase_22 AC 583 ms
78,028 KB
testcase_23 AC 602 ms
90,152 KB
testcase_24 AC 288 ms
53,288 KB
testcase_25 AC 288 ms
53,348 KB
testcase_26 AC 287 ms
53,108 KB
testcase_27 AC 289 ms
53,320 KB
testcase_28 AC 282 ms
53,344 KB
testcase_29 AC 281 ms
53,136 KB
testcase_30 AC 285 ms
53,316 KB
testcase_31 AC 285 ms
53,320 KB
testcase_32 AC 278 ms
53,164 KB
testcase_33 AC 282 ms
53,224 KB
testcase_34 AC 475 ms
72,888 KB
testcase_35 AC 413 ms
59,568 KB
testcase_36 AC 479 ms
71,216 KB
testcase_37 AC 459 ms
69,756 KB
testcase_38 AC 462 ms
63,320 KB
testcase_39 AC 438 ms
60,380 KB
testcase_40 AC 482 ms
62,648 KB
testcase_41 AC 421 ms
58,568 KB
testcase_42 AC 469 ms
68,968 KB
testcase_43 AC 478 ms
70,808 KB
testcase_44 AC 933 ms
90,352 KB
testcase_45 AC 1,217 ms
353,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:18:24: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val max_a = a.max()!!
                       ^
Main.kt:19:24: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    val max_b = b.max()!!
                       ^

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextLong()
    val p = nextLong()
    val a = Array(n) { nextLong() }
    val b = a.copyOf()
    val c = Array(n) { 0 }
    for (i in 0 until n) {
        while (b[i] % p == 0L) {
            b[i] /= p
            c[i]++
        }
    }
    val max_a = a.max()!!
    val max_b = b.max()!!
    if (max_b == 1L && max_a < m) {
        println(-1)
        return
    }
    val stack = Stack<Long>()
    stack.push(1)
    val map = mutableMapOf<Long, Int>()
    map[1] = 0
    var ans = Int.MAX_VALUE
    while (stack.isNotEmpty()) {
        val now = stack.pop()
        if (now * max_a > m) {
            ans = min(ans, map[now]!! + 1)
        } else {
            for (i in 0 until n) {
                val nxt = now * b[i]
                if (!map.containsKey(nxt)) stack.push(nxt)
                map[nxt] = min(map[nxt] ?: Int.MAX_VALUE, map[now]!! + c[i] + 1)
            }
        }
    }
    println(ans)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()!!
fun nextDouble() = next().toDouble()
// endregion
0