結果
問題 | No.1332 Range Nearest Query |
ユーザー | yakamoto |
提出日時 | 2021-01-08 22:42:24 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,806 bytes |
コンパイル時間 | 19,277 ms |
コンパイル使用メモリ | 466,976 KB |
実行使用メモリ | 269,764 KB |
最終ジャッジ日時 | 2024-11-16 14:02:51 |
合計ジャッジ時間 | 151,312 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 306 ms
56,728 KB |
testcase_01 | AC | 308 ms
89,664 KB |
testcase_02 | AC | 307 ms
58,540 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 982 ms
99,600 KB |
testcase_27 | AC | 1,070 ms
134,568 KB |
testcase_28 | AC | 807 ms
96,580 KB |
testcase_29 | AC | 841 ms
218,428 KB |
testcase_30 | AC | 884 ms
97,220 KB |
testcase_31 | AC | 721 ms
125,852 KB |
testcase_32 | AC | 911 ms
97,008 KB |
testcase_33 | AC | 912 ms
269,764 KB |
testcase_34 | AC | 778 ms
93,692 KB |
testcase_35 | AC | 807 ms
125,564 KB |
testcase_36 | AC | 822 ms
95,348 KB |
testcase_37 | AC | 830 ms
193,260 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
コンパイルメッセージ
Main.kt:29:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun incr(i: Long) {cnt.add(i)} ^ Main.kt:30:11: warning: expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types private inline fun decr(i: Long) {cnt.remove(i) } ^ Main.kt:151: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:155: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:159: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:163: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:165: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:172: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:179: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:1
ソースコード
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) private val N = ni() private val X = nal(N) private val Q = ni() private val q = kotlin.math.sqrt(Q.toDouble()).toInt() inner class Query(val id: Int, val l: Int, val r: Int, val x: Long) : Comparable<Query> { override fun compareTo(other: Query): Int { if (l/q != other.l/q) return (l/q).compareTo(other.l/q) return r.compareTo(other.r) } } // multisetの代わり private val cnt = TreeSet<Long>() private inline fun incr(i: Long) {cnt.add(i)} private inline fun decr(i: Long) {cnt.remove(i) } fun solve() { val queries = Array(Q) { val l = ni() - 1 val r = ni() val x = nl() Query(it, l, r, x) } queries.sort() var l = 0 var r = 0 val ans = LongArray(Q) val INF = 1e18.toLong() + 100 for (q in queries) { if (q.r < r) { l = q.l r = q.l cnt.clear() } while (q.l < l) incr(X[--l]) while (q.r > r) incr(X[r++]) while (q.l > l) decr(X[l++]) // while (q.r < r) decr(X[--r]) debug{"${q.id} cnt:$cnt"} val ans1 = abs((cnt.lower(q.x + 1L) ?: INF) - q.x) val ans2 = abs((cnt.higher(q.x - 1L) ?: INF) - q.x) ans[q.id] = min(ans1, ans2) } for (i in ans) { out.println(i) } } 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()) } 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()} } fun main() { val out = java.io.PrintWriter(System.out) Solver(System.`in`, out).solve() out.flush() }