結果

問題 No.973 余興
ユーザー yakamotoyakamoto
提出日時 2020-01-18 16:53:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 828 ms / 4,000 ms
コード長 2,043 bytes
コンパイル時間 15,229 ms
コンパイル使用メモリ 461,028 KB
実行使用メモリ 182,100 KB
最終ジャッジ日時 2024-06-27 19:34:23
合計ジャッジ時間 50,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
181,188 KB
testcase_01 AC 765 ms
181,040 KB
testcase_02 AC 760 ms
180,888 KB
testcase_03 AC 758 ms
180,716 KB
testcase_04 AC 768 ms
181,136 KB
testcase_05 AC 763 ms
181,028 KB
testcase_06 AC 763 ms
180,928 KB
testcase_07 AC 761 ms
180,912 KB
testcase_08 AC 757 ms
181,304 KB
testcase_09 AC 754 ms
181,068 KB
testcase_10 AC 668 ms
146,140 KB
testcase_11 AC 503 ms
109,940 KB
testcase_12 AC 521 ms
109,940 KB
testcase_13 AC 505 ms
110,116 KB
testcase_14 AC 513 ms
109,864 KB
testcase_15 AC 372 ms
61,080 KB
testcase_16 AC 366 ms
61,084 KB
testcase_17 AC 359 ms
59,008 KB
testcase_18 AC 368 ms
59,240 KB
testcase_19 AC 363 ms
59,204 KB
testcase_20 AC 375 ms
59,120 KB
testcase_21 AC 373 ms
61,380 KB
testcase_22 AC 374 ms
61,212 KB
testcase_23 AC 376 ms
61,384 KB
testcase_24 AC 380 ms
59,300 KB
testcase_25 AC 355 ms
59,240 KB
testcase_26 AC 360 ms
59,276 KB
testcase_27 AC 370 ms
61,496 KB
testcase_28 AC 362 ms
61,572 KB
testcase_29 AC 370 ms
59,292 KB
testcase_30 AC 784 ms
182,096 KB
testcase_31 AC 805 ms
181,868 KB
testcase_32 AC 803 ms
181,672 KB
testcase_33 AC 801 ms
181,796 KB
testcase_34 AC 819 ms
180,892 KB
testcase_35 AC 794 ms
181,312 KB
testcase_36 AC 786 ms
181,204 KB
testcase_37 AC 779 ms
181,168 KB
testcase_38 AC 788 ms
180,752 KB
testcase_39 AC 792 ms
182,100 KB
testcase_40 AC 303 ms
57,172 KB
testcase_41 AC 292 ms
57,040 KB
testcase_42 AC 308 ms
56,768 KB
testcase_43 AC 305 ms
57,204 KB
testcase_44 AC 309 ms
57,008 KB
testcase_45 AC 323 ms
56,948 KB
testcase_46 AC 753 ms
180,736 KB
testcase_47 AC 729 ms
180,964 KB
testcase_48 AC 759 ms
181,032 KB
testcase_49 AC 623 ms
146,296 KB
testcase_50 AC 708 ms
181,108 KB
testcase_51 AC 761 ms
181,200 KB
testcase_52 AC 810 ms
180,840 KB
testcase_53 AC 811 ms
181,316 KB
testcase_54 AC 803 ms
181,252 KB
testcase_55 AC 828 ms
181,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.min

val MOD = 1_000_000_007

fun main() {
  val (N, X) = readInts()
  val A = readInts()

  val dpL = Array(N){IntArray(N - it + 1)}
  val dpR = Array(N){IntArray(it + 2)}
  val mxR = run {
    val res = IntArray(N)
    var sum = 0L
    var r = N - 1
    for (l in N - 1 downTo 0) {
      sum += A[l]
      while (r > l && sum > X) {
        sum -= A[r]
        r--
      }
      res[l] = r - l + 1
    }
    res
  }
  debug(mxR)
  val mxL = run {
    val res = IntArray(N)
    var sum = 0L
    var l = 0
    for (r in 0 until N) {
      sum += A[r]
      while (l < r && sum > X) {
        sum -= A[l]
        l++
      }
      res[r] = r - l + 1
    }
    res
  }
  debug(mxL)

  for (d in 1 until N) {
    for (l in 0 until N - d) {
      val r = l + d
      val llen = min(d, mxL[r])
      val lwin = dpL[l][d] - dpL[l][d-llen] < llen
      val rlen = min(d, mxR[l])
      val rwin = dpR[r][d] - dpR[r][d-rlen] < rlen
      val win = if (lwin or rwin) 1 else 0
//      debug{"$l $r $win"}
      dpL[l][d+1] = dpL[l][d] + win
      dpR[r][d+1] = dpR[r][d] + win
    }
  }

  debugDim(dpL)
  debugDim(dpR)

  val awin = dpL[0][N] - dpL[0][N - 1] == 1
  if (awin) println("A")
  else println("B")
}












































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