結果

問題 No.972 選び方のスコア
ユーザー yakamotoyakamoto
提出日時 2020-01-17 22:19:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 1,493 bytes
コンパイル時間 14,271 ms
コンパイル使用メモリ 443,452 KB
実行使用メモリ 102,636 KB
最終ジャッジ日時 2024-06-25 21:11:52
合計ジャッジ時間 38,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 855 ms
102,040 KB
testcase_01 AC 794 ms
101,968 KB
testcase_02 AC 849 ms
100,408 KB
testcase_03 AC 676 ms
71,708 KB
testcase_04 AC 830 ms
100,648 KB
testcase_05 AC 888 ms
100,732 KB
testcase_06 AC 846 ms
100,448 KB
testcase_07 AC 805 ms
80,364 KB
testcase_08 AC 620 ms
86,076 KB
testcase_09 AC 625 ms
86,300 KB
testcase_10 AC 631 ms
86,080 KB
testcase_11 AC 648 ms
101,732 KB
testcase_12 AC 655 ms
102,324 KB
testcase_13 AC 648 ms
102,088 KB
testcase_14 AC 650 ms
102,244 KB
testcase_15 AC 714 ms
101,912 KB
testcase_16 AC 718 ms
102,636 KB
testcase_17 AC 705 ms
102,360 KB
testcase_18 AC 311 ms
55,336 KB
testcase_19 AC 832 ms
86,428 KB
testcase_20 AC 794 ms
86,704 KB
testcase_21 AC 837 ms
86,504 KB
testcase_22 AC 827 ms
86,200 KB
testcase_23 AC 851 ms
86,504 KB
testcase_24 AC 828 ms
86,436 KB
testcase_25 AC 307 ms
55,048 KB
testcase_26 AC 302 ms
55,052 KB
testcase_27 AC 302 ms
55,200 KB
testcase_28 AC 294 ms
52,076 KB
testcase_29 AC 297 ms
52,048 KB
testcase_30 AC 307 ms
55,388 KB
testcase_31 AC 310 ms
55,176 KB
testcase_32 AC 309 ms
55,464 KB
testcase_33 AC 314 ms
55,440 KB
testcase_34 AC 317 ms
55,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

fun main() {
  val (N) = readInts()
  val A = readLongs()

  if (N == 1 || N == 2) {
    println(0)
    return
  }

  A.sort()

  val cum = LongArray(N + 1)
  for (i in 0 until N) {
    cum[i + 1] = cum[i] + A[i]
  }

  var ans = 0L
  for (i in 0 until N) {
    var l = 0
    var h = min(i, N - 1 - i) + 1
    while(h - l > 1) {
      val m = (h + l) / 2
      if (A[N - m] + A[i - m] - A[i] * 2 >= 0) l = m
      else h = m
    }

    val v = cum[N] - cum[N - l] +
            cum[i] - cum[i - l] -
            A[i] * 2 * l

    debug{"i:$i l:$l v:$v"}
    ans = max(ans, v)
  }

  println(ans)
}












































private val isDebug = try {
  // なんか本番でエラーでる
  System.getenv("MY_DEBUG") != null
} catch (t: Throwable) {
  false
}

private fun readLn() = readLine()!!
private fun readStrings() = readLn().split(" ")
private fun readInts() = readStrings().map { it.toInt() }.toIntArray()
private fun readLongs() = readStrings().map { it.toLong() }.toLongArray()
private inline fun debug(msg: () -> String) {
  if (isDebug) System.err.println(msg())
}
private fun debug(a: LongArray) {
  debug{a.joinToString(" ")}
}
private fun debug(a: IntArray) {
  debug{a.joinToString(" ")}
}
private fun debug(a: BooleanArray) {
  debug{a.map{if(it) 1 else 0}.joinToString("")}
}
private fun debugDim(A: Array<IntArray>) {
  if (isDebug) {
    for (a in A) {
      debug(a)
    }
  }
}
0