結果

問題 No.1465 Archaea
ユーザー yakamotoyakamoto
提出日時 2021-04-02 22:32:15
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 3,469 bytes
コンパイル時間 19,021 ms
コンパイル使用メモリ 433,804 KB
実行使用メモリ 50,616 KB
最終ジャッジ日時 2023-08-25 12:43:16
合計ジャッジ時間 26,135 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
50,464 KB
testcase_01 AC 271 ms
50,164 KB
testcase_02 AC 273 ms
50,052 KB
testcase_03 AC 274 ms
50,388 KB
testcase_04 WA -
testcase_05 AC 273 ms
50,460 KB
testcase_06 AC 272 ms
50,452 KB
testcase_07 AC 272 ms
50,268 KB
testcase_08 WA -
testcase_09 AC 272 ms
50,616 KB
testcase_10 AC 273 ms
50,168 KB
testcase_11 AC 278 ms
50,476 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 273 ms
50,016 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 279 ms
50,480 KB
testcase_18 AC 274 ms
50,456 KB
testcase_19 WA -
testcase_20 AC 271 ms
50,256 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 270 ms
50,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:137:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: LongArray) {
          ^
Main.kt:141:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: IntArray) {
          ^
Main.kt:145:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debug(a: BooleanArray) {
          ^
Main.kt:149:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}
          ^
Main.kt:151:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<LongArray>) {
          ^
Main.kt:158:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<IntArray>) {
          ^
Main.kt:165:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun debugDim(A: Array<BooleanArray>) {
          ^
Main.kt:182:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
          ^

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.lang.AssertionError
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  private val reader = BufferedReader(InputStreamReader(stream), 32768)

  fun solve() {
    val ans = if (solve2()) "YES" else "NO"
    out.println(ans)
  }

  fun solve2(): Boolean {
    val (N, K) = na(2)
    val MAX = kotlin.math.log2(N.toDouble()).toInt()
    val pow2 = IntArray(MAX + 1)
    pow2[0] = 1
    for (i in 1 until pow2.size) {
      pow2[i] = pow2[i - 1] * 2
    }
    debug{"MAX:$MAX"}
    debug(pow2)
    for (i in 0 .. MAX) {
      var k = K - i
      var n = N - pow2[i] - 3*k
      for (j in MAX - 1 downTo 0) {
        val diff = pow2[j]*3 - 3
        debug{"k:$k n:$n $diff"}
        while (n >= diff && k > 0) {
          n -= diff
          k--
        }
      }
      if (n == 0 && k >= 0) return true
    }

    return false
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return IntArray(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  /**
   * コーナーケースでエラー出たりするので、debug(dp[1])のように添え字付きの場合はdebug{}をつかうこと
   */
  private inline fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private inline fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private inline fun debug(a: BooleanArray) {
    debug { toString(a) }
  }

  private inline fun toString(a: BooleanArray) = run{a.map { if (it) 1 else 0 }.joinToString("")}

  private inline fun debugDim(A: Array<LongArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private inline fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }
  private inline fun debugDim(A: Array<BooleanArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }

  private inline fun assert(b: Boolean) = run{if (!b) throw AssertionError()}
  private inline fun assert(b: Boolean, f: () -> String) = run{if (!b) throw AssertionError(f())}
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0