結果
問題 | No.1553 Lovely City |
ユーザー | yakamoto |
提出日時 | 2021-06-19 11:56:07 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 1,290 ms / 2,000 ms |
コード長 | 7,016 bytes |
コンパイル時間 | 17,459 ms |
コンパイル使用メモリ | 472,788 KB |
実行使用メモリ | 140,384 KB |
最終ジャッジ日時 | 2024-06-22 21:55:59 |
合計ジャッジ時間 | 47,299 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 280 ms
50,436 KB |
testcase_01 | AC | 285 ms
50,264 KB |
testcase_02 | AC | 597 ms
123,956 KB |
testcase_03 | AC | 292 ms
50,396 KB |
testcase_04 | AC | 300 ms
50,440 KB |
testcase_05 | AC | 306 ms
50,856 KB |
testcase_06 | AC | 301 ms
50,324 KB |
testcase_07 | AC | 294 ms
50,420 KB |
testcase_08 | AC | 982 ms
110,584 KB |
testcase_09 | AC | 1,022 ms
111,328 KB |
testcase_10 | AC | 1,127 ms
123,048 KB |
testcase_11 | AC | 950 ms
114,236 KB |
testcase_12 | AC | 1,110 ms
131,132 KB |
testcase_13 | AC | 941 ms
107,328 KB |
testcase_14 | AC | 967 ms
112,104 KB |
testcase_15 | AC | 1,014 ms
114,332 KB |
testcase_16 | AC | 1,011 ms
115,772 KB |
testcase_17 | AC | 932 ms
115,764 KB |
testcase_18 | AC | 1,161 ms
135,004 KB |
testcase_19 | AC | 1,258 ms
136,064 KB |
testcase_20 | AC | 1,175 ms
134,264 KB |
testcase_21 | AC | 1,244 ms
137,908 KB |
testcase_22 | AC | 1,290 ms
138,260 KB |
testcase_23 | AC | 1,174 ms
136,820 KB |
testcase_24 | AC | 1,289 ms
140,384 KB |
testcase_25 | AC | 1,177 ms
136,608 KB |
testcase_26 | AC | 1,183 ms
137,272 KB |
testcase_27 | AC | 1,171 ms
134,364 KB |
コンパイルメッセージ
Main.kt:290: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:294: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:298: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:302: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:304: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:311: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:318: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:335: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 = 998244353 class UnionFind(n: Int) { private val par = IntArray(n){it} private val rank = IntArray(n){1} // 集合の要素数 private val visits = IntArray(n) // 訪れた場所をfind毎に用意するのがもったいないのでつかいまわす fun find(x: Int): Int { var ptr = 0 var i = x while(par[i] != i) { visits[ptr++] = i i = par[i] } for (j in 0 until ptr) { par[visits[j]] = i } return i } private fun merge(node: Int, rt: Int): Int { par[node] = rt rank[rt] += rank[node] return rt } fun unite(x: Int, y: Int): Boolean { val x1 = find(x) val y1 = find(y) return if (x1 == y1) false else { if (rank[x1] < rank[y1]) merge(x1, y1) else merge(y1, x1) true } } fun isSame(x: Int, y: Int) = find(x) == find(y) fun isRoot(x: Int) = par[x] == x /** * xを解決する必要がないときは直にrankをみる */ fun cntNodes(x: Int): Int = rank[find(x)] fun inspect() = run{par} } /** * 連結成分毎にsubgraphに分けて、subgraph上で番号を振り直す処理をまとめたもの */ class GroupedByDSU(private val N: Int, private val M: Int, private val from: IntArray, private val to: IntArray) { private class BuildingGroup { val from = mutableListOf<Int>() val to = mutableListOf<Int>() val nodes = mutableListOf<Int>() } data class Group(val N: Int, val from: IntArray, val to: IntArray) /** * 引数のIntArrayはzip_id->node_idのmapping */ fun process(f: (Group, IntArray) -> Unit) { val uf = UnionFind(N) for (i in 0 until M) { uf.unite(from[i], to[i]) } val grpOf = IntArray(N) val grp = Array(N){BuildingGroup()} for (i in 0 until N) { grpOf[i] = uf.find(i) grp[grpOf[i]].nodes += i } for (i in 0 until M) { val g = grp[grpOf[from[i]]] g.from += from[i] g.to += to[i] } val mapping = IntArray(N) // zip_id -> node_id val inv = IntArray(N) // node_id -> zip_id for (g in grp) { if (g.nodes.size == 0) continue for (i in g.nodes.indices) { val v = g.nodes[i] mapping[i] = v inv[v] = i } val gFrom = IntArray(g.from.size) val gTo = IntArray(g.to.size) for (i in g.from.indices) { gFrom[i] = inv[g.from[i]] gTo[i] = inv[g.to[i]] } val group = Group(g.nodes.size, gFrom, gTo) f(group, mapping) } } } 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 } /** * @return node->order じゃなくて、nodeのリストを返す。 */ fun topologicalSort(n: Int, g: Array<IntArray>): IntArray? { val res = IntArray(n){-1} var ptr = 0 val que = ArrayDeque<Int>() val deg = IntArray(n) for (v in 0 until n) { for (o in g[v]) { deg[o]++ } } for (v in 0 until n) { if (deg[v] == 0) que.add(v) } while(que.isNotEmpty()) { val v = que.poll() res[ptr++] = v for (i in g[v].indices) { val o = g[v][i] if (--deg[o] == 0) que.add(o) } } // 全部に順序がつかないとループがあったってこと // グラフにでてこないノードにも順序がつく return if (ptr < n) null else res } class Solver(stream: InputStream, private val out: java.io.PrintWriter) { private val reader = BufferedReader(InputStreamReader(stream), 32768) fun solve() { val (N, M) = na(2) val (from, to) = na2(M, -1) val ans = mutableListOf<Pair<Int, Int>>() val grouped = GroupedByDSU(N, M, from, to) grouped.process { grp, map -> val n = grp.N val g = packDGraph(n, grp.from, grp.to) val top = topologicalSort(n, g) if (top == null) { // 一回転 for (i in 0 until n) { ans += Pair(map[i], map[(i + 1)%n]) } } else { // 一直線 for (o in 0 until n - 1) { ans += Pair(map[top[o]], map[top[o + 1]]) } } } out.println(ans.size) for (i in ans) { out.println("${i.first+1} ${i.second+1}") } } 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() }