結果

問題 No.1767 BLUE to RED
ユーザー yudedakoyudedako
提出日時 2022-02-02 13:49:06
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,149 bytes
コンパイル時間 8,740 ms
コンパイル使用メモリ 269,444 KB
実行使用メモリ 141,092 KB
最終ジャッジ日時 2024-06-11 09:22:09
合計ジャッジ時間 41,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 812 ms
64,156 KB
testcase_01 AC 800 ms
64,080 KB
testcase_02 AC 795 ms
63,928 KB
testcase_03 AC 807 ms
63,988 KB
testcase_04 AC 866 ms
64,200 KB
testcase_05 AC 837 ms
64,296 KB
testcase_06 AC 810 ms
64,080 KB
testcase_07 AC 852 ms
64,320 KB
testcase_08 AC 841 ms
64,120 KB
testcase_09 AC 1,845 ms
110,616 KB
testcase_10 AC 1,978 ms
119,384 KB
testcase_11 AC 1,932 ms
114,512 KB
testcase_12 AC 1,928 ms
109,608 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.collection.mutable.ArrayBuffer
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*

class UnionFind(val size: Int):
  private val vec = Array.fill(size){-1}
  def find(a: Int): Int =
    if vec(a) < 0 then
      a
    else
      vec(a) = find(vec(a))
      vec(a)
  def same(a: Int, b: Int): Boolean = find(a) == find(b)
  def unite(a: Int, b: Int): Unit =
    val i = find(a)
    val j = find(b)
    if i != j then
      if vec(i) < vec(j) then
        vec(i) += vec(j)
        vec(j) = i
      else
        vec(j) += vec(i)
        vec(i) = j
@main def main =
  val Array(n, m) = readLine().split(' ').map(_.toInt)
  val a = readLine().split(' ').map(_.toInt)
  val b = readLine().split(' ').map(_.toInt)
  val aSet = a.toSet
  val allCell = (a ++ b).sorted
  val uft = UnionFind(n + m + 1)
  for i <- 0 until n + m if aSet.contains(allCell(i)) do
    uft.unite(i, n + m)
  var result = 0
  for i <- (1 until n + m).sortBy(i => allCell(i) - allCell(i - 1)) do
    if !uft.same(i, i - 1) then
      uft.unite(i, i - 1)
      result += allCell(i) - allCell(i - 1)
  println(result)
0