結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー |
![]() |
提出日時 | 2019-11-26 23:09:16 |
言語 | Scala(Beta) (3.6.2) |
結果 |
AC
|
実行時間 | 1,132 ms / 2,000 ms |
コード長 | 4,398 bytes |
コンパイル時間 | 17,171 ms |
コンパイル使用メモリ | 264,880 KB |
実行使用メモリ | 64,492 KB |
最終ジャッジ日時 | 2024-11-07 01:02:11 |
合計ジャッジ時間 | 35,351 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 12 |
ソースコード
object Main {import java.io.{BufferedReader, InputStream, InputStreamReader}import java.util.StringTokenizerimport scala.reflect.ClassTagdef main(args: Array[String]): Unit = {val out = new java.io.PrintWriter(System.out)new Main(out, new InputReader(System.in)).solve()out.flush()}private[this] val oj = System.getenv("ATCODER_DEBUG") == null@inline private final def DEBUG(f: => Unit): Unit = {if (!oj){ f }}@inline private final def debug(as: Array[Boolean]): Unit = if (!oj){ debug(as.map(x => if(x) "1" else "0").mkString) }@inline def debug(as: Array[Int]): Unit = if (!oj){ debug(as.mkString(" ")) }@inline private final def debug(as: Array[Long]): Unit =if (!oj){ debug(as.mkString(" ")) }@inline private final def debugDim(m: Array[Array[Int]]): Unit = if (!oj){REP(m.length) { i =>debug(m(i))}}@inline private final def debugDimFlip(m: Array[Array[Long]]): Unit = if (!oj){REP(m(0).length) { j =>REP(m.length) { i =>System.err.print(m(i)(j))System.err.print(" ")}System.err.println()}}@inline def debug(s: => String): Unit = DEBUG {System.err.println(s)}@inline private final def debugL(num: => Long): Unit = DEBUG {System.err.println(num)}private def isDebug[A](debug: => A, online: => A): A = {if (oj) online else debug}class InputReader(val stream: InputStream) {private[this] val reader = new BufferedReader(new InputStreamReader(stream), 32768)private[this] var tokenizer: StringTokenizer = _@inline private[this] final def next(): String = {while (tokenizer == null || !tokenizer.hasMoreTokens)tokenizer = new StringTokenizer(reader.readLine)tokenizer.nextToken}def nextInt(): Int = Integer.parseInt(next())def nextLong(): Long = java.lang.Long.parseLong(next())def nextChar(): Char = next().charAt(0)def ni(): Int = nextInt()def nl(): Long = nextLong()def nc(): Char = nextChar()def ns(): String = next()def ns(n: Int): Array[Char] = ns().toCharArraydef na(n: Int, offset: Int = 0): Array[Int] = map(n)(_ => ni() + offset)def na2(n: Int, offset: Int = 0): (Array[Int], Array[Int]) = {val A1, A2 = Array.ofDim[Int](n)REP(n) { i =>A1(i) = ni() + offsetA2(i) = ni() + offset}(A1, A2)}def nm(n: Int, m: Int): Array[Array[Int]] = {val A = Array.ofDim[Int](n, m)REP(n) { i =>REP(m) { j =>A(i)(j) = ni()}}A}def nal(n: Int): Array[Long] = map(n)(_ => nl())def nm_c(n: Int, m: Int): Array[Array[Char]] = map(n) (_ => ns(m))}def REP(n: Int, offset: Int = 0)(f: Int => Unit): Unit = {var i = offsetval N = n + offsetwhile(i < N) { f(i); i += 1 }}def REP_r(n: Int, offset: Int = 0)(f: Int => Unit): Unit = {var i = n - 1 + offsetwhile(i >= offset) { f(i); i -= 1 }}def TO(from: Int, to: Int)(f: Int => Unit): Unit = {REP(to - from + 1, from)(f)}def map[@specialized A: ClassTag](n: Int, offset: Int = 0)(f: Int => A): Array[A] = {val res = Array.ofDim[A](n)REP(n)(i => res(i) = f(i + offset))res}def sumL(as: Array[Int]): Long = {var s = 0LREP(as.length)(i => s += as(i))s}def cumSum(as: Array[Int]): Array[Long] = {val cum = Array.ofDim[Long](as.length + 1)REP(as.length) { i =>cum(i + 1) = cum(i) + as(i)}cum}}object Workspace {import Main._}class Main(out: java.io.PrintWriter, sc: Main.InputReader) {import sc._import Main._import java.util.Arrays.sortimport scala.collection.mutableimport math.{abs, max, min}import mutable.ArrayBufferimport Workspace._// toIntとか+7とかするならvalにしろfinal private[this] val MOD = 1000000007def solve(): Unit = {val N = ni()val B = na(N)var move = 0Lvar sum = 0// 11000 または 111n の形になるとするREP(N) { i =>if (sum > i) {move += sum - i} else if (sum < i) {val zeroes = i.toLong - sumval m = max(0, zeroes - B(i)).toLongdebug(s"$zeroes $m")move += zeroes * (zeroes + 1) / 2 - m * (m + 1) / 2}sum += B(i)}assert(sum == N)out.println(move)}}