結果

問題 No.1703 Much Matching
ユーザー yakamotoyakamoto
提出日時 2021-10-08 23:05:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 890 ms / 2,000 ms
コード長 3,449 bytes
コンパイル時間 18,398 ms
コンパイル使用メモリ 435,680 KB
実行使用メモリ 63,436 KB
最終ジャッジ日時 2023-09-30 12:30:09
合計ジャッジ時間 40,748 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
55,920 KB
testcase_01 AC 313 ms
56,212 KB
testcase_02 AC 313 ms
56,040 KB
testcase_03 AC 351 ms
56,712 KB
testcase_04 AC 365 ms
57,084 KB
testcase_05 AC 362 ms
58,804 KB
testcase_06 AC 699 ms
61,908 KB
testcase_07 AC 481 ms
60,056 KB
testcase_08 AC 700 ms
61,276 KB
testcase_09 AC 699 ms
61,568 KB
testcase_10 AC 527 ms
59,572 KB
testcase_11 AC 577 ms
61,216 KB
testcase_12 AC 501 ms
60,468 KB
testcase_13 AC 622 ms
61,528 KB
testcase_14 AC 402 ms
60,520 KB
testcase_15 AC 582 ms
61,676 KB
testcase_16 AC 636 ms
59,716 KB
testcase_17 AC 665 ms
61,172 KB
testcase_18 AC 400 ms
59,012 KB
testcase_19 AC 732 ms
61,720 KB
testcase_20 AC 530 ms
60,364 KB
testcase_21 AC 756 ms
61,420 KB
testcase_22 AC 670 ms
61,396 KB
testcase_23 AC 629 ms
61,648 KB
testcase_24 AC 402 ms
58,592 KB
testcase_25 AC 517 ms
59,380 KB
testcase_26 AC 619 ms
61,528 KB
testcase_27 AC 679 ms
61,232 KB
testcase_28 AC 739 ms
63,392 KB
testcase_29 AC 598 ms
61,504 KB
testcase_30 AC 615 ms
61,144 KB
testcase_31 AC 485 ms
59,536 KB
testcase_32 AC 684 ms
61,152 KB
testcase_33 AC 638 ms
61,216 KB
testcase_34 AC 483 ms
58,816 KB
testcase_35 AC 525 ms
59,256 KB
testcase_36 AC 890 ms
63,436 KB
testcase_37 AC 372 ms
58,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:32:30: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val ans = dp.map{it.max()!!}.max()
                             ^
Main.kt:126: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:130: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:134: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:138: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:140: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:147: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:154: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:171: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, M, Q) = na(3)
    val dp = Array(N + 1){IntArray(M + 1)}
    for (i in 0 until Q) {
      val (a, b) = na(2, -1)
      dp[a][b]++
    }

    for (i in 0 until N) {
      for (j in 0 until M) {
        var v = dp[i][j] + if (i > 0 && j > 0) dp[i-1][j-1] else 0
        if (i > 0) v = max(v, dp[i-1][j])
        if (j > 0) v = max(v, dp[i][j - 1])
        dp[i][j] = v
      }
    }
    debugDim(dp)
    val ans = dp.map{it.max()!!}.max()
    out.println(ans)
  }













































  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