結果

問題 No.247 線形計画問題もどき
ユーザー ともきともき
提出日時 2015-07-18 05:32:50
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,089 bytes
コンパイル時間 11,183 ms
コンパイル使用メモリ 270,892 KB
実行使用メモリ 73,704 KB
最終ジャッジ日時 2024-06-29 02:24:20
合計ジャッジ時間 40,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 968 ms
63,496 KB
testcase_01 AC 903 ms
63,340 KB
testcase_02 TLE -
testcase_03 AC 903 ms
63,344 KB
testcase_04 AC 903 ms
63,300 KB
testcase_05 AC 894 ms
63,180 KB
testcase_06 AC 891 ms
63,304 KB
testcase_07 AC 965 ms
63,232 KB
testcase_08 AC 946 ms
65,788 KB
testcase_09 AC 898 ms
63,180 KB
testcase_10 AC 913 ms
63,208 KB
testcase_11 AC 900 ms
63,208 KB
testcase_12 AC 889 ms
63,332 KB
testcase_13 AC 881 ms
63,184 KB
testcase_14 AC 909 ms
63,264 KB
testcase_15 AC 911 ms
63,304 KB
testcase_16 AC 900 ms
63,264 KB
testcase_17 AC 986 ms
63,484 KB
testcase_18 AC 932 ms
63,532 KB
testcase_19 AC 1,022 ms
63,612 KB
testcase_20 AC 1,041 ms
68,192 KB
testcase_21 AC 913 ms
63,288 KB
testcase_22 AC 956 ms
63,484 KB
testcase_23 AC 925 ms
63,300 KB
testcase_24 AC 1,012 ms
66,548 KB
testcase_25 AC 991 ms
64,520 KB
testcase_26 AC 948 ms
63,436 KB
testcase_27 AC 954 ms
63,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec

// PriorityQueue[Long]()(scala.math.Ordering.Long.reverse)
package net.pushl {
  package number {
    // Prime  (Prime.scala)
    // Number (Number.scala)
  }
  package string {
    // RollingHash (RollingHash.scala)
  }
  object EnRich {
    implicit class AString(val self : String) extends AnyVal {
      def splitToIntArray = self.split(" ").map(_.toInt)
    }
  }
}

import net.pushl.EnRich._
object Main {
  def main(args : Array[String]) : Unit = {
    val c = readLine().toInt
    val n = readLine().toInt
    val a = readLine().splitToIntArray

    val v = Array.fill[Option[Int]](c+1)(None)
    v(0) = Some(0)
    for(i <- a){
      for(k <- i to c){
        (v(k),v(k-i)) match {
          case (Some(a),Some(b)) => v(k) = Some(a min (b+1))
          case (None   ,Some(b)) => v(k) = Some(b+1)
          case (_      ,None   ) => {}
        }
      }
    }
    val out = v(c) match {
        case Some(k) => k
        case None    => -1
      }
    println(out)
  }
}
0