結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー 箱星箱星
提出日時 2020-10-09 21:40:00
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,340 bytes
コンパイル時間 15,767 ms
コンパイル使用メモリ 442,412 KB
実行使用メモリ 109,192 KB
最終ジャッジ日時 2024-07-20 10:03:12
合計ジャッジ時間 58,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
50,616 KB
testcase_01 AC 294 ms
54,008 KB
testcase_02 AC 285 ms
54,164 KB
testcase_03 WA -
testcase_04 AC 282 ms
54,004 KB
testcase_05 AC 279 ms
54,024 KB
testcase_06 AC 273 ms
53,956 KB
testcase_07 WA -
testcase_08 AC 281 ms
53,852 KB
testcase_09 AC 274 ms
54,136 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 278 ms
54,044 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 279 ms
54,036 KB
testcase_17 AC 275 ms
53,980 KB
testcase_18 AC 1,110 ms
93,116 KB
testcase_19 AC 1,037 ms
93,148 KB
testcase_20 AC 931 ms
96,228 KB
testcase_21 AC 471 ms
59,940 KB
testcase_22 WA -
testcase_23 AC 440 ms
59,376 KB
testcase_24 WA -
testcase_25 AC 961 ms
96,232 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,187 ms
108,960 KB
testcase_29 AC 1,196 ms
109,092 KB
testcase_30 WA -
testcase_31 AC 1,317 ms
108,980 KB
testcase_32 WA -
testcase_33 AC 1,303 ms
109,008 KB
testcase_34 AC 1,195 ms
109,116 KB
testcase_35 AC 1,368 ms
109,192 KB
testcase_36 WA -
testcase_37 AC 1,258 ms
108,936 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1,262 ms
109,100 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 313 ms
53,844 KB
testcase_44 AC 268 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val n = sc.nextInt()
    val a = Array(n) { sc.nextLong() }
    val b = Array(n) { sc.nextLong() }
    val map = mutableMapOf<Long, Long>()
    for (i in 0 until n) {
        map[a[i]] = (map[a[i]] ?: 0) + b[i]
    }
    val sum = map.values.sum()
    var lsum = 0L
    var rsum = sum
    for (x in map.keys.sorted()) {
        rsum -= map[x]!!
        if (lsum >= rsum) {
            var ans = 0L
            for ((k, v) in map) {
                ans += v * Math.abs(x - k)
            }
            println("$x $ans")
            return
        }
        lsum += map[x]!!
    }
}

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