結果

問題 No.972 選び方のスコア
ユーザー yakamotoyakamoto
提出日時 2020-01-17 22:11:15
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,497 bytes
コンパイル時間 14,453 ms
コンパイル使用メモリ 458,216 KB
実行使用メモリ 102,360 KB
最終ジャッジ日時 2024-06-25 20:45:09
合計ジャッジ時間 40,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 892 ms
101,892 KB
testcase_01 AC 817 ms
101,668 KB
testcase_02 AC 871 ms
99,884 KB
testcase_03 AC 692 ms
71,528 KB
testcase_04 AC 887 ms
100,524 KB
testcase_05 WA -
testcase_06 AC 911 ms
100,076 KB
testcase_07 AC 831 ms
80,584 KB
testcase_08 AC 645 ms
85,844 KB
testcase_09 AC 642 ms
86,192 KB
testcase_10 AC 642 ms
86,084 KB
testcase_11 AC 667 ms
101,664 KB
testcase_12 AC 669 ms
101,952 KB
testcase_13 AC 663 ms
101,868 KB
testcase_14 AC 655 ms
101,864 KB
testcase_15 AC 727 ms
101,868 KB
testcase_16 AC 732 ms
102,360 KB
testcase_17 AC 732 ms
102,224 KB
testcase_18 AC 326 ms
55,136 KB
testcase_19 AC 898 ms
86,368 KB
testcase_20 AC 831 ms
86,232 KB
testcase_21 AC 861 ms
86,136 KB
testcase_22 WA -
testcase_23 AC 845 ms
86,252 KB
testcase_24 AC 899 ms
86,316 KB
testcase_25 AC 323 ms
55,060 KB
testcase_26 AC 323 ms
55,308 KB
testcase_27 AC 328 ms
55,180 KB
testcase_28 AC 312 ms
52,048 KB
testcase_29 AC 314 ms
51,784 KB
testcase_30 AC 331 ms
55,036 KB
testcase_31 AC 324 ms
54,920 KB
testcase_32 AC 323 ms
55,184 KB
testcase_33 AC 333 ms
55,348 KB
testcase_34 AC 329 ms
55,268 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 - 1 - 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