結果
問題 | No.1935 Water Simulation |
ユーザー | yakamoto |
提出日時 | 2022-05-13 22:19:45 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,733 bytes |
コンパイル時間 | 17,345 ms |
コンパイル使用メモリ | 457,140 KB |
実行使用メモリ | 163,184 KB |
最終ジャッジ日時 | 2024-07-22 02:19:30 |
合計ジャッジ時間 | 29,290 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | AC | 334 ms
161,304 KB |
testcase_06 | AC | 333 ms
161,384 KB |
testcase_07 | AC | 339 ms
161,248 KB |
testcase_08 | AC | 323 ms
161,320 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 326 ms
161,356 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 346 ms
161,392 KB |
testcase_17 | AC | 342 ms
161,336 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 334 ms
161,260 KB |
testcase_21 | AC | 336 ms
161,316 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 338 ms
161,352 KB |
testcase_25 | AC | 338 ms
161,312 KB |
testcase_26 | RE | - |
testcase_27 | AC | 346 ms
161,248 KB |
testcase_28 | AC | 342 ms
161,292 KB |
testcase_29 | AC | 345 ms
161,336 KB |
testcase_30 | AC | 339 ms
161,312 KB |
testcase_31 | AC | 325 ms
161,148 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(): Int { ^ Main.kt:201: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:205: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:209: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:213: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:215: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:222: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:229: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:246:11: warning: expected pe
ソースコード
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(): Int { 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] } return next } fun solve() { while (true) { s = next() t++ if (dp[s]) { break } dp[s] = true // if (isDebug) { // setV() // debug(V) // } if (t == N) { setV() out.println(V.joinToString(" ")) return } } val target = s val t1 = t s = Vmax[0] t = 0 // debug{"s:$s t:$t"} while(true) { s = next() t++ // if (isDebug) { // setV() // debug{"t:$t"} // debug { V.joinToString(" ") } // } // debug{"s:$s t:$t"} if (s == target) { break } } 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) { s = next() t++ } 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()