結果

問題 No.1279 Array Battle
ユーザー 箱星箱星
提出日時 2020-11-06 21:23:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 1,892 bytes
コンパイル時間 13,568 ms
コンパイル使用メモリ 442,496 KB
実行使用メモリ 89,428 KB
最終ジャッジ日時 2024-07-22 12:00:59
合計ジャッジ時間 22,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
57,044 KB
testcase_01 AC 290 ms
60,088 KB
testcase_02 AC 287 ms
60,488 KB
testcase_03 AC 278 ms
57,048 KB
testcase_04 AC 278 ms
57,028 KB
testcase_05 AC 280 ms
56,900 KB
testcase_06 AC 285 ms
60,340 KB
testcase_07 AC 297 ms
60,172 KB
testcase_08 AC 267 ms
56,772 KB
testcase_09 AC 282 ms
60,132 KB
testcase_10 AC 290 ms
60,428 KB
testcase_11 AC 301 ms
60,276 KB
testcase_12 AC 409 ms
64,896 KB
testcase_13 AC 491 ms
69,012 KB
testcase_14 AC 476 ms
69,376 KB
testcase_15 AC 593 ms
89,044 KB
testcase_16 AC 621 ms
89,196 KB
testcase_17 AC 600 ms
89,112 KB
testcase_18 AC 622 ms
89,428 KB
testcase_19 AC 597 ms
89,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:44:29: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val max = map.keys.max()!!
                            ^

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*
import kotlin.collections.ArrayList

fun nextPermutation(array: MutableList<Int>): Boolean {
    var tmp: Int
    for (i in array.size - 2 downTo 0) {
        if (array[i] < array[i + 1]) {
            for (j in array.size - 1 downTo i + 1) {
                if (array[j] > array[i]) {
                    tmp = array[i]
                    array[i] = array[j]
                    array[j] = tmp

                    val tmpArray = array.takeLast(array.size - (i + 1)).sorted()
                    tmpArray.forEachIndexed { index, e ->
                        array[i + 1 + index] = e
                    }

                    return true
                }
            }
        }
    }
    return false
}

fun PrintWriter.solve(sc: FastScanner) {
    val n = sc.nextInt()
    val a = Array(n) { sc.nextInt() }
    val b = Array(n) { sc.nextInt() }
    val p = (0 until n).toMutableList()
    val map = mutableMapOf<Int, Int>()
    do {
        var point = 0
        for (i in 0 until n) {
            point += maxOf(0, a[p[i]] - b[i])
        }
        map[point] = (map[point] ?: 0) + 1
    } while (nextPermutation(p))
    val max = map.keys.max()!!
    println(map[max]!!)
}

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

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    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()
    fun ready() = br.ready()
}
0