結果
問題 | No.1597 Matrix Sort |
ユーザー | yakamoto |
提出日時 | 2021-07-09 22:08:50 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,852 bytes |
コンパイル時間 | 16,875 ms |
コンパイル使用メモリ | 453,760 KB |
実行使用メモリ | 80,500 KB |
最終ジャッジ日時 | 2024-07-01 16:37:16 |
合計ジャッジ時間 | 53,295 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 302 ms
57,612 KB |
testcase_01 | AC | 302 ms
57,780 KB |
testcase_02 | AC | 304 ms
57,864 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 830 ms
73,896 KB |
testcase_11 | AC | 875 ms
74,368 KB |
testcase_12 | AC | 1,399 ms
73,712 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 851 ms
72,664 KB |
testcase_16 | AC | 1,055 ms
74,816 KB |
testcase_17 | AC | 1,130 ms
75,376 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 1,192 ms
80,248 KB |
testcase_22 | AC | 963 ms
80,228 KB |
testcase_23 | AC | 900 ms
80,136 KB |
testcase_24 | AC | 570 ms
71,276 KB |
testcase_25 | AC | 556 ms
71,076 KB |
testcase_26 | AC | 295 ms
57,600 KB |
testcase_27 | AC | 295 ms
57,528 KB |
testcase_28 | AC | 297 ms
57,588 KB |
testcase_29 | AC | 299 ms
57,656 KB |
コンパイルメッセージ
Main.kt:162: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:166: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:170: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:174: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:176: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:183: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:190: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:207: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()} ^
ソースコード
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 /** * countLt みたいなもの */ fun lb(A: Array<Int>, x: Int): Int { var l = - 1 var h = A.size while(h - l > 1) { val m = (h + l) / 2 if (A[m] >= x) h = m else l = m } return h } /** * 単調増加 * (l, h] 方式 * @return マッチするものがなかったらmx */ inline fun findMin(mn: Int, mx: Int, f: (Int) -> Boolean): Int { var low = mn - 1 var high = mx while(high - low > 1) { val m = (low + high) / 2 if (f(m)) high = m else low = m } return high } class Solver(stream: InputStream, private val out: java.io.PrintWriter) { private val reader = BufferedReader(InputStreamReader(stream), 32768) fun solve() { val N = ni() val K = nl() val P = ni() val A = na(N).toTypedArray() val B = na(N).toTypedArray() B.sort() fun cntLe(m: Int): Long { var res = 0L for (a in A) { val mxB = m - a res += lb(B, mxB + 1) // [0, m] val mxB2 = P + m - a res += lb(B, mxB2 + 1) // [0, P + m] res -= lb(B, P - a) // [0, P) } debug{"cntLe($m)=$res"} return res } val ans = findMin(0, P - 1) { m -> cntLe(m) >= K } 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())} } fun main() { val out = java.io.PrintWriter(System.out) Solver(System.`in`, out).solve() out.flush() }