結果

問題 No.973 余興
ユーザー yakamotoyakamoto
提出日時 2020-01-17 23:04:37
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 2,947 bytes
コンパイル時間 18,132 ms
コンパイル使用メモリ 457,320 KB
実行使用メモリ 263,584 KB
最終ジャッジ日時 2024-06-26 00:02:21
合計ジャッジ時間 43,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,018 ms
260,684 KB
testcase_01 AC 2,959 ms
260,756 KB
testcase_02 AC 2,998 ms
260,880 KB
testcase_03 AC 2,999 ms
260,812 KB
testcase_04 AC 3,004 ms
261,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2,896 ms
261,188 KB
testcase_11 AC 1,348 ms
110,212 KB
testcase_12 AC 1,390 ms
109,928 KB
testcase_13 WA -
testcase_14 AC 1,381 ms
110,104 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 415 ms
62,048 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 446 ms
62,144 KB
testcase_23 AC 428 ms
62,104 KB
testcase_24 AC 428 ms
62,048 KB
testcase_25 AC 385 ms
59,880 KB
testcase_26 AC 413 ms
62,060 KB
testcase_27 AC 477 ms
68,160 KB
testcase_28 WA -
testcase_29 AC 471 ms
61,960 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 3,721 ms
263,440 KB
testcase_35 AC 3,826 ms
263,380 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 3,822 ms
263,432 KB
testcase_39 WA -
testcase_40 AC 299 ms
57,196 KB
testcase_41 AC 294 ms
57,084 KB
testcase_42 AC 297 ms
57,056 KB
testcase_43 WA -
testcase_44 AC 298 ms
57,252 KB
testcase_45 WA -
testcase_46 AC 3,901 ms
263,128 KB
testcase_47 WA -
testcase_48 AC 3,769 ms
263,584 KB
testcase_49 WA -
testcase_50 AC 3,800 ms
263,320 KB
testcase_51 WA -
testcase_52 TLE -
testcase_53 AC 3,845 ms
263,332 KB
testcase_54 AC 3,905 ms
263,292 KB
testcase_55 AC 3,727 ms
263,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

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

  if (N == 1) {
    println("B")
    return
  }

  val dpL = Array(N){SegmentTree(N, true){a, b -> a and b}}
  val dpR = Array(N){SegmentTree(N, true){a, b -> a and b}}
  for (i in 0 until N) {
    // 1個だけ残ってる場合はlose
    dpL[i].update(0, false)
    dpR[i].update(0, false)
  }
  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 (len in 2 until N + 1) {
    for (l in 0 until N - len) {
      val r = l + len - 1
      val win = !dpL[l].query(0, min(len-1, mxR[l])) or
              !dpR[r].query(0, min(len-1, mxL[r]))
      dpL[l].update(len - 1, win)
      dpR[r].update(len - 1, win)
    }
  }
  if (dpL[0].query(N-1, N)) println("A")
  else println("B")
}

class SegmentTree(n: Int, val zero: Boolean, val f: (Boolean, Boolean) -> Boolean) {
  private val N =
    if (Integer.highestOneBit(n) == n) n
    else Integer.highestOneBit(n) shl 1

  private val dat = BooleanArray(2 * N){zero}

  fun update(i: Int, a: Boolean) {
    var ix = i + N
    dat[ix] = a
    while(ix > 1) {
      dat[ix shr 1] = f(dat[ix], dat[ix xor 1])
      ix = ix shr 1
    }
  }

  /**
   * [a, b)
   */
  fun query(a: Int, b: Int): Boolean {
    var res: Boolean = zero
    var left = a + N
    var right = b - 1 + N

    while(left <= right) {
      if ((left and 1) == 1) res = f(res, dat[left])
      if ((right and 1) == 0) res = f(res, dat[right])
      left = (left + 1) shr 1 // 右の子供なら右の親に移動
      right = (right - 1) shr 1 // 左の子供なら左の親に移動
    }

    return res
  }
}












































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