結果

問題 No.1279 Array Battle
ユーザー 箱星箱星
提出日時 2021-10-04 23:05:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 1,861 bytes
コンパイル時間 17,822 ms
コンパイル使用メモリ 447,984 KB
実行使用メモリ 88,112 KB
最終ジャッジ日時 2024-07-22 23:42:51
合計ジャッジ時間 25,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
51,400 KB
testcase_01 AC 335 ms
55,024 KB
testcase_02 AC 335 ms
54,864 KB
testcase_03 AC 321 ms
51,592 KB
testcase_04 AC 328 ms
51,632 KB
testcase_05 AC 326 ms
51,516 KB
testcase_06 AC 338 ms
55,016 KB
testcase_07 AC 337 ms
54,800 KB
testcase_08 AC 324 ms
51,612 KB
testcase_09 AC 340 ms
55,056 KB
testcase_10 AC 342 ms
54,908 KB
testcase_11 AC 359 ms
55,112 KB
testcase_12 AC 486 ms
60,896 KB
testcase_13 AC 566 ms
65,544 KB
testcase_14 AC 568 ms
65,756 KB
testcase_15 AC 692 ms
87,732 KB
testcase_16 AC 691 ms
88,052 KB
testcase_17 AC 697 ms
88,088 KB
testcase_18 AC 709 ms
88,096 KB
testcase_19 AC 690 ms
88,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    val b = Array(n) { 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.maxOrNull()!!
    println(map[max]!!)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.shl(26))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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