結果

問題 No.1703 Much Matching
ユーザー yakamotoyakamoto
提出日時 2021-10-08 23:05:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 899 ms / 2,000 ms
コード長 3,449 bytes
コンパイル時間 19,878 ms
コンパイル使用メモリ 464,272 KB
実行使用メモリ 95,428 KB
最終ジャッジ日時 2024-07-23 06:32:28
合計ジャッジ時間 39,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
54,592 KB
testcase_01 AC 326 ms
54,456 KB
testcase_02 AC 320 ms
54,144 KB
testcase_03 AC 348 ms
55,612 KB
testcase_04 AC 357 ms
55,420 KB
testcase_05 AC 350 ms
56,724 KB
testcase_06 AC 700 ms
87,896 KB
testcase_07 AC 474 ms
62,056 KB
testcase_08 AC 704 ms
93,104 KB
testcase_09 AC 711 ms
91,904 KB
testcase_10 AC 521 ms
69,032 KB
testcase_11 AC 612 ms
75,040 KB
testcase_12 AC 482 ms
60,904 KB
testcase_13 AC 641 ms
88,124 KB
testcase_14 AC 418 ms
57,404 KB
testcase_15 AC 583 ms
72,272 KB
testcase_16 AC 646 ms
87,240 KB
testcase_17 AC 686 ms
87,752 KB
testcase_18 AC 418 ms
57,348 KB
testcase_19 AC 754 ms
91,740 KB
testcase_20 AC 509 ms
70,320 KB
testcase_21 AC 772 ms
92,528 KB
testcase_22 AC 678 ms
89,404 KB
testcase_23 AC 703 ms
88,156 KB
testcase_24 AC 425 ms
57,044 KB
testcase_25 AC 490 ms
63,000 KB
testcase_26 AC 615 ms
81,080 KB
testcase_27 AC 665 ms
87,836 KB
testcase_28 AC 756 ms
94,668 KB
testcase_29 AC 627 ms
76,656 KB
testcase_30 AC 616 ms
86,536 KB
testcase_31 AC 464 ms
60,344 KB
testcase_32 AC 687 ms
88,468 KB
testcase_33 AC 642 ms
89,100 KB
testcase_34 AC 472 ms
61,336 KB
testcase_35 AC 521 ms
67,684 KB
testcase_36 AC 899 ms
95,428 KB
testcase_37 AC 377 ms
58,752 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