結果

問題 No.1935 Water Simulation
ユーザー yakamotoyakamoto
提出日時 2022-05-13 22:31:52
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 4,686 bytes
コンパイル時間 20,369 ms
コンパイル使用メモリ 437,456 KB
実行使用メモリ 159,420 KB
最終ジャッジ日時 2023-09-29 08:02:21
合計ジャッジ時間 31,550 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 337 ms
157,324 KB
testcase_05 AC 326 ms
157,256 KB
testcase_06 AC 324 ms
157,520 KB
testcase_07 AC 325 ms
157,252 KB
testcase_08 AC 327 ms
157,332 KB
testcase_09 AC 333 ms
157,336 KB
testcase_10 AC 325 ms
157,228 KB
testcase_11 AC 329 ms
157,488 KB
testcase_12 AC 325 ms
157,260 KB
testcase_13 AC 329 ms
157,840 KB
testcase_14 AC 327 ms
157,268 KB
testcase_15 AC 330 ms
157,348 KB
testcase_16 AC 329 ms
157,248 KB
testcase_17 AC 337 ms
157,276 KB
testcase_18 AC 331 ms
157,228 KB
testcase_19 AC 331 ms
157,148 KB
testcase_20 AC 327 ms
157,216 KB
testcase_21 AC 328 ms
157,260 KB
testcase_22 AC 329 ms
157,260 KB
testcase_23 AC 325 ms
157,420 KB
testcase_24 AC 327 ms
157,612 KB
testcase_25 AC 326 ms
157,720 KB
testcase_26 AC 327 ms
159,192 KB
testcase_27 AC 325 ms
157,424 KB
testcase_28 AC 330 ms
157,596 KB
testcase_29 AC 331 ms
157,292 KB
testcase_30 AC 331 ms
159,292 KB
testcase_31 AC 323 ms
157,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:33:13: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
    private inline fun setV() {
            ^
Main.kt:41:13: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types
    private inline fun next() {
            ^
Main.kt:198: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:202: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:206: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:210: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:212: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:219: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:226: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:243:11: warning: expected perform

ソースコード

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 V0 = na(4)
    val N = nl()
    Solver2(V0, N).solve()
  }

  inner class Solver2(val Vmax: IntArray, val N: Long) {
    private val rad = 101
    private val MAX = rad*rad*rad*rad
    private val dp = BooleanArray(MAX)
    private val V = IntArray(4)
    private var s = Vmax[0]
    private var t = 0L

    init {
      dp[s] = true
    }

    private inline fun setV() {
      var cur = s
      for (i in 0 until 4) {
        V[i] = (cur % rad)
        cur /= rad
      }
    }

    private inline fun next() {
      setV()

      val i = (t % 4).toInt()
      val ni = ((t + 1) % 4).toInt()
      val move = min(Vmax[ni] - V[ni], V[i])
      V[i] -= move
      V[ni] += move

      var next = 0
      for (j in 3 downTo 0) {
        next *= rad
        next += V[j]
      }
      t++
      s = next
    }

    fun solve() {
      while (true) {
        next()
        if (t == N) {
          setV()
          out.println(V.joinToString(" "))
          return
        }
        if (dp[s]) {
          break
        }
        dp[s] = true

//        if (isDebug) {
//          setV()
//          debug(V)
//        }
      }

      val target = s
      val t1 = t
      s = Vmax[0]
      t = 0
//      debug{"s:$s t:$t"}
      while(true) {
        if (s == target) {
          break
        }
        next()
//        if (isDebug) {
//          setV()
//          debug{"t:$t"}
//          debug { V.joinToString(" ") }
//        }
//        debug{"s:$s t:$t"}
      }
      debug{"t0:$t t1:$t1"}
      val span = t1 - t

      val r = (N - t) % span
      debug{"r:$r"}
      s = target
      for (i in 0 until r) {
        next()
      }
      setV()
      out.println(V.joinToString(" "))
    }
  }












































  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())}

  companion object {
    // TestRunnerから呼びたいので単純なmainじゃだめ
    fun main() {
      val out = java.io.PrintWriter(System.out)
      Solver(System.`in`, out).solve()
      out.flush()
    }
  }
}

/**
 * judgeから呼ばれる
 */
fun main() = Solver.main()
0