結果

問題 No.1708 Quality of Contest
コンテスト
ユーザー yudedako
提出日時 2022-01-25 15:20:33
言語 Scala(Beta)
(3.8.2)
コンパイル:
scalac _filename_
実行:
/usr/bin/scala_run _class_
結果
AC  
実行時間 1,881 ms / 2,000 ms
コード長 1,720 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 12,975 ms
コンパイル使用メモリ 297,936 KB
実行使用メモリ 103,252 KB
最終ジャッジ日時 2026-03-09 19:28:44
合計ジャッジ時間 49,591 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import scala.annotation.tailrec
import scala.collection.mutable
import scala.io.StdIn.*


@main def main =
  val Array(n, m, x) = readLine().split(' ').map(_.toInt)
  val problem = Array.fill(n){
    val Array(a, b) = readLine().split(' ').map(_.toInt)
    (a, b - 1)
  }
  val k = readLine().toInt
  val contestant = readLine().split(' ').map(_.toInt)
  val sortedWithQuality = (0 until n).sorted(Ordering.by[Int, Int](problem(_)._1).reverse).toList
  var all = sortedWithQuality
  var newGenre = sortedWithQuality
  val useGenre = Array.fill(m){false}
  val useProblem = Array.fill(n){false}
  val contestantCount = Array.fill(n + 1){0}
  for c <- contestant do
    contestantCount(c) += 1
  var rest = k.toLong - contestantCount(0)
  @tailrec def popNewGenre(rest: List[Int]): List[Int] =
    rest match
      case h::t if useGenre(problem(h)._2) => popNewGenre(t)
      case _ => rest
  @tailrec def popAll(rest: List[Int]): List[Int] =
    rest match
      case h::t if useProblem(h) => popAll(t)
      case _ => rest
  var result = 0L
  for i <- 1 to n do
    newGenre = popNewGenre(newGenre)
    all = popAll(all)
    (newGenre, all) match
      case (Nil, h::t) =>
        useProblem(h) = true
        result += problem(h)._1 * rest
      case (h::t, Nil) =>
        useProblem(h) = true
        useGenre(problem(h)._2) = true
        result += (problem(h)._1 + x) * rest
      case (hi::ti, hj::tj) =>
        if problem(hi)._1 + x < problem(hj)._1 then
          useProblem(hj) = true
          result += problem(hj)._1 * rest
        else
          useProblem(hi) = true
          useGenre(problem(hi)._2) = true
          result += (problem(hi)._1 + x) * rest
    rest -= contestantCount(i)
  println(result)
0