結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー yakamotoyakamoto
提出日時 2021-07-30 22:11:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 4,544 bytes
コンパイル時間 20,052 ms
コンパイル使用メモリ 440,432 KB
実行使用メモリ 61,816 KB
最終ジャッジ日時 2023-10-14 05:05:58
合計ジャッジ時間 31,235 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
53,556 KB
testcase_01 AC 284 ms
53,576 KB
testcase_02 AC 276 ms
53,608 KB
testcase_03 AC 283 ms
53,672 KB
testcase_04 AC 286 ms
53,552 KB
testcase_05 AC 282 ms
54,020 KB
testcase_06 AC 283 ms
53,584 KB
testcase_07 AC 285 ms
53,584 KB
testcase_08 AC 281 ms
53,572 KB
testcase_09 AC 286 ms
53,656 KB
testcase_10 AC 290 ms
53,780 KB
testcase_11 AC 286 ms
54,884 KB
testcase_12 AC 285 ms
53,800 KB
testcase_13 AC 285 ms
53,776 KB
testcase_14 AC 286 ms
53,840 KB
testcase_15 AC 288 ms
53,656 KB
testcase_16 AC 554 ms
61,372 KB
testcase_17 AC 561 ms
61,460 KB
testcase_18 AC 493 ms
61,280 KB
testcase_19 AC 490 ms
61,424 KB
testcase_20 AC 561 ms
61,668 KB
testcase_21 AC 575 ms
61,384 KB
testcase_22 AC 540 ms
59,248 KB
testcase_23 AC 419 ms
57,124 KB
testcase_24 AC 572 ms
61,628 KB
testcase_25 AC 437 ms
57,108 KB
testcase_26 AC 496 ms
61,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:186: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:190: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:194: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:198: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:200: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:207: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:214: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:231: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 N = ni()
    val K = ns().map{it-'0'}
    val C0 = intArrayOf(0) + na(9) // answer用
    val C = C0.clone()

    if (K.size > N) {
      out.println(-1)
      return
    }

    if (K.size < N) {
      val ans = IntArray(N)
      fun set(j: Int, d: Int) {
        ans[j] = d
        C0[d]--
      }
      for (j in 0 until N) {
        for (d in 1 .. 9) {
          if (C0[d] > 0) {
            set(j, d)
            break
          }
        }
      }

      out.println(ans.joinToString(""))
      return
    }

    var lst = -1 // どこまでいっしょだったか
    for (i in 0 until N) {
      if (C[K[i]] == 0) break
      lst = i
      C[K[i]]--
    }
    debug{"lst:$lst"}

    // iでKより大きくなる。それ以前は同じ
    fun answer(i: Int) {
      debug{"answer($i)"}
      val ans = IntArray(N)
      fun set(j: Int, d: Int) {
        ans[j] = d
        C0[d]--
      }

      for (j in 0 until N) {
        if (j < i) set(j, K[j])
        else if (j == i) {
          for (d in K[j] + 1 .. 9) {
            if (C0[d] > 0) {
              set(j, d)
              break
            }
          }
        }
        else {
          for (d in 1 .. 9) {
            if (C0[d] > 0) {
              set(j, d)
              break
            }
          }
        }
      }
      out.println(ans.joinToString(""))
    }

    for (i in min(N - 1, lst + 1) downTo 0) {
      if (i <= lst) C[K[i]]++
      for (d in K[i] + 1 .. 9) {
        if (C[d] > 0) {
          answer(i)
          return
        }
      }
    }
    out.println(-1)
  }













































  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