結果
問題 | No.2290 UnUnion Find |
ユーザー | 箱星 |
提出日時 | 2023-03-05 23:49:25 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,327 bytes |
コンパイル時間 | 14,365 ms |
コンパイル使用メモリ | 447,612 KB |
実行使用メモリ | 109,108 KB |
最終ジャッジ日時 | 2024-09-22 23:32:38 |
合計ジャッジ時間 | 39,066 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
62,404 KB |
testcase_01 | AC | 311 ms
97,240 KB |
testcase_02 | AC | 703 ms
97,968 KB |
testcase_03 | AC | 1,045 ms
108,948 KB |
testcase_04 | AC | 1,062 ms
108,800 KB |
testcase_05 | AC | 1,078 ms
108,816 KB |
testcase_06 | AC | 1,068 ms
108,844 KB |
testcase_07 | AC | 1,049 ms
108,856 KB |
testcase_08 | AC | 1,054 ms
109,108 KB |
testcase_09 | AC | 1,073 ms
108,964 KB |
testcase_10 | AC | 1,095 ms
108,432 KB |
testcase_11 | AC | 1,091 ms
109,008 KB |
testcase_12 | AC | 1,072 ms
108,960 KB |
testcase_13 | AC | 1,057 ms
108,828 KB |
testcase_14 | AC | 1,072 ms
108,804 KB |
testcase_15 | AC | 1,083 ms
108,984 KB |
testcase_16 | AC | 1,072 ms
109,000 KB |
testcase_17 | AC | 1,069 ms
108,284 KB |
testcase_18 | AC | 1,068 ms
109,044 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val n = nextInt() val q = nextInt() val parents = mutableSetOf<Int>() val uf = UnionFind(n) (0 until n).forEach { parents.add(it) } for (i in 0 until q) { val t = nextInt() if (t == 1) { val u = nextInt() - 1 val v = nextInt() - 1 parents.remove(uf.find(u)) parents.remove(uf.find(v)) uf.unite(u, v) parents.add(uf.find(u)) } else { val v = nextInt() - 1 val v1 = parents.first() val v2 = parents.last() if (!uf.same(v, v1)) { println(v1 + 1) } else if (!uf.same(v, v2)) { println(v2 + 1) } else { println(-1) } } } } class UnionFind(n: Int) { private val rank = IntArray(n) { 0 } private val parent = IntArray(n) { -1 } fun find(x: Int): Int { if (parent[x] < 0) { return x } parent[x] = find(parent[x]) return parent[x] } fun unite(x: Int, y: Int) { val x1 = find(x) val y1 = find(y) if (x1 == y1) { return } if (rank[x1] < rank[y1]) { parent[y1] += parent[x1] parent[x1] = y1 } else { parent[x1] += parent[y1] parent[y1] = x1 if (rank[x1] == rank[y1]) { rank[x1]++ } } } fun same(x: Int, y: Int) = find(x) == find(y) fun size(x: Int) = -parent[find(x)] } fun main() { Thread(null, { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() }, "solve", abs(1L.shl(26))) .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } } .apply { start() }.join() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() // endregion