結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | yakamoto |
提出日時 | 2022-05-21 13:00:25 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,207 bytes |
コンパイル時間 | 17,619 ms |
コンパイル使用メモリ | 468,260 KB |
実行使用メモリ | 147,232 KB |
最終ジャッジ日時 | 2024-09-20 11:35:34 |
合計ジャッジ時間 | 47,708 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 268 ms
51,028 KB |
testcase_01 | AC | 267 ms
51,072 KB |
testcase_02 | AC | 264 ms
51,264 KB |
testcase_03 | RE | - |
testcase_04 | AC | 1,727 ms
140,484 KB |
testcase_05 | AC | 270 ms
51,056 KB |
testcase_06 | RE | - |
testcase_07 | AC | 1,501 ms
139,112 KB |
testcase_08 | AC | 1,642 ms
131,472 KB |
testcase_09 | RE | - |
testcase_10 | AC | 1,531 ms
129,400 KB |
testcase_11 | AC | 1,599 ms
138,376 KB |
testcase_12 | AC | 1,743 ms
130,184 KB |
testcase_13 | AC | 1,734 ms
142,284 KB |
testcase_14 | AC | 1,747 ms
147,232 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 262 ms
51,228 KB |
testcase_18 | AC | 1,636 ms
134,560 KB |
testcase_19 | RE | - |
testcase_20 | AC | 1,652 ms
123,892 KB |
testcase_21 | AC | 1,719 ms
144,504 KB |
testcase_22 | AC | 1,682 ms
138,088 KB |
コンパイルメッセージ
Main.kt:202: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:206: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:210: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:214: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:216: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:223: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:230: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:247: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.collections.HashMap import kotlin.math.abs import kotlin.math.max import kotlin.math.min val MOD = 1_000_000_007 fun packDGraph(n: Int, from: IntArray, to: IntArray): Array<IntArray> { val p = IntArray(n) val m = from.size for (i in 0 until m) { ++p[from[i]] } val g = Array(n){IntArray(p[it])} for (i in 0 until m) { g[from[i]][--p[from[i]]] = to[i] } return g } class StronglyConnectedComponents(val N: Int, from: IntArray, to: IntArray) { private var id = 0 private val Ti = IntArray(N) private val visited = BooleanArray(N) val g = packDGraph(N, from, to) private val gi = packDGraph(N, to, from) fun dfs(u: Int) { visited[u] = true for (v in g[u]) { if (visited[v]) continue dfs(v) } Ti[id++] = u } fun dfs2(u: Int, nodes: MutableList<Int>) { visited[u] = true for (v in gi[u]) { if (visited[v]) continue dfs2(v, nodes) } nodes += u } fun build(): List<List<Int>> { for (u in 0 until N) { if (!visited[u]) dfs(u) } Arrays.fill(visited, false) val res = mutableListOf<MutableList<Int>>() for (t in N - 1 downTo 0) { if (visited[Ti[t]]) continue val nodes = mutableListOf<Int>() dfs2(Ti[t], nodes) res += nodes } return res } } class Solver(stream: InputStream, private val out: java.io.PrintWriter) { private val reader = BufferedReader(InputStreamReader(stream), 32768) fun solve() { val N = ni() val X = na(N) val A = na(N) val map = HashMap<Int, Int>() for (i in 0 until N) { map[X[i]] = i } val from = mutableListOf<Int>() val to = mutableListOf<Int>() for (i in 0 until N) { val j = map[X[i] + A[i]] ?: continue from += i to += j } for (i in 0 until N) { val j = map[X[i] - A[i]] ?: continue from += i to += j } val scc = StronglyConnectedComponents(N, from.toIntArray(), to.toIntArray()) val components = scc.build() debug { components.toString() } val reach = LongArray(N) val ans = LongArray(N) for (ii in components.size - 1 downTo 0) { val grp = components[ii] var mx = 0L for (i in grp) { mx = max(mx, X[i].toLong() + A[i]) for (j in scc.g[i]) { mx = max(mx, reach[j]) } } for (i in grp) { reach[i] = mx ans[i] = reach[i] - X[i] } } debug(reach) ans.forEach { println(it) } } 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()