結果

問題 No.9 モンスターのレベル上げ
ユーザー gigurururugigurururu
提出日時 2015-01-06 02:24:57
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 2,531 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 9,808 ms
コンパイル使用メモリ 257,716 KB
実行使用メモリ 65,740 KB
最終ジャッジ日時 2024-06-28 22:04:00
合計ジャッジ時間 46,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 945 ms
63,872 KB
testcase_01 AC 950 ms
64,012 KB
testcase_02 AC 2,531 ms
65,360 KB
testcase_03 AC 2,260 ms
65,244 KB
testcase_04 AC 1,799 ms
65,220 KB
testcase_05 AC 1,610 ms
64,964 KB
testcase_06 AC 1,347 ms
65,028 KB
testcase_07 AC 1,055 ms
64,340 KB
testcase_08 AC 1,402 ms
65,060 KB
testcase_09 AC 2,426 ms
65,360 KB
testcase_10 AC 971 ms
63,988 KB
testcase_11 AC 2,295 ms
65,036 KB
testcase_12 AC 2,350 ms
65,208 KB
testcase_13 AC 2,419 ms
65,740 KB
testcase_14 AC 2,427 ms
65,020 KB
testcase_15 AC 2,380 ms
65,136 KB
testcase_16 AC 1,163 ms
64,472 KB
testcase_17 AC 1,944 ms
65,304 KB
testcase_18 AC 1,846 ms
65,132 KB
testcase_19 AC 1,157 ms
64,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn

object Main {
  def main(args:Array[String]) = {
    val n = StdIn.readInt()
    val a = StdIn.readLine().split(" ").map(_.toInt).+:(1000000000)
    val pq = new mutable.PriorityQueue[(Int,Int)]()(Ordering.Tuple2[Int,Int].reverse)
    for (v <- a) pq.+=((v,0))
    val b = StdIn.readLine().split(" ").map(_.toInt/2)
    println( (0 until n).map { i =>
      val q = pq.clone()
      val (h:Array[Int], t:Array[Int]) = b.splitAt(i).swap
      h.++(t).foreach { j =>
        val (l, c) = q.dequeue()
        q.enqueue((l + j, c + 1))
      }
      q.map(_._2).max
    }.min )
  }
}
0