結果

問題 No.547 未知の言語
ユーザー GoryudyumaGoryudyuma
提出日時 2018-02-13 19:20:19
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 833 ms / 2,000 ms
コード長 1,512 bytes
コンパイル時間 8,371 ms
コンパイル使用メモリ 266,788 KB
実行使用メモリ 64,076 KB
最終ジャッジ日時 2024-06-30 04:26:37
合計ジャッジ時間 36,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 802 ms
63,836 KB
testcase_01 AC 808 ms
63,780 KB
testcase_02 AC 833 ms
63,768 KB
testcase_03 AC 823 ms
63,780 KB
testcase_04 AC 824 ms
63,820 KB
testcase_05 AC 827 ms
63,924 KB
testcase_06 AC 803 ms
63,964 KB
testcase_07 AC 795 ms
63,924 KB
testcase_08 AC 802 ms
63,800 KB
testcase_09 AC 802 ms
63,864 KB
testcase_10 AC 803 ms
63,572 KB
testcase_11 AC 805 ms
63,984 KB
testcase_12 AC 804 ms
63,860 KB
testcase_13 AC 799 ms
63,908 KB
testcase_14 AC 814 ms
63,752 KB
testcase_15 AC 798 ms
63,980 KB
testcase_16 AC 810 ms
63,708 KB
testcase_17 AC 815 ms
63,876 KB
testcase_18 AC 828 ms
63,800 KB
testcase_19 AC 803 ms
63,732 KB
testcase_20 AC 800 ms
63,684 KB
testcase_21 AC 809 ms
63,704 KB
testcase_22 AC 806 ms
63,524 KB
testcase_23 AC 825 ms
64,076 KB
testcase_24 AC 809 ms
63,940 KB
testcase_25 AC 803 ms
63,532 KB
testcase_26 AC 824 ms
63,500 KB
testcase_27 AC 807 ms
63,784 KB
testcase_28 AC 826 ms
63,920 KB
testcase_29 AC 818 ms
63,624 KB
testcase_30 AC 796 ms
63,900 KB
testcase_31 AC 800 ms
63,724 KB
testcase_32 AC 829 ms
63,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

import scala.collection.Searching._
import scala.annotation.tailrec
import scala.collection.immutable.Queue
import scala.collection.mutable
import scala.io.StdIn.readLine

class IUnionFind(val size: Int) {

  private case class Node(var parent: Option[Int], var treeSize: Int)

  private val nodes = Array.fill[Node](size)(new Node(None, 1))

  def union(t1: Int, t2: Int): IUnionFind = {
    if (t1 == t2) return this

    val root1 = root(t1)
    val root2 = root(t2)
    if (root1 == root2) return this

    val node1 = nodes(root1)
    val node2 = nodes(root2)

    if (node1.treeSize < node2.treeSize) {
      node1.parent = Some(t2)
      node2.treeSize += node1.treeSize
    } else {
      node2.parent = Some(t1)
      node1.treeSize += node2.treeSize
    }
    this
  }

  def connected(t1: Int, t2: Int): Boolean = t1 == t2 || root(t1) == root(t2)

  @tailrec
  private def root(t: Int): Int = nodes(t).parent match {
    case None => t
    case Some(p) => root(p)
  }
}


object Main {
  def solve(sc: => Scanner): Unit = {
    val N = sc.nextInt
    val A = Array.fill(N)(sc.next)
    val B = Array.fill(N)(sc.next)
    for (i <- Range(0, N)) {
      if (A(i) != B(i)) {
        println(i + 1)
        println(A(i))
        println(B(i))
      }
    }
  }

  def gcd(i: Int, j: Int): Int = {
    if (i < j) (gcd(j, i)) else (if (j == 0) (i) else (gcd(j, i % j)))
  }

  def main(args: Array[String]): Unit = {
    val sc: Scanner = new Scanner(System.in)
    solve(sc)
  }
}
0