結果

問題 No.556 仁義なきサルたち
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-20 12:46:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 59,252 KB
最終ジャッジ日時 2024-06-09 10:16:13
合計ジャッジ時間 8,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,964 KB
testcase_01 AC 143 ms
54,076 KB
testcase_02 AC 133 ms
54,068 KB
testcase_03 AC 119 ms
52,768 KB
testcase_04 AC 136 ms
54,140 KB
testcase_05 AC 153 ms
54,220 KB
testcase_06 AC 155 ms
53,964 KB
testcase_07 AC 166 ms
54,320 KB
testcase_08 AC 166 ms
54,304 KB
testcase_09 AC 211 ms
54,648 KB
testcase_10 AC 217 ms
54,980 KB
testcase_11 AC 229 ms
56,912 KB
testcase_12 AC 232 ms
56,784 KB
testcase_13 AC 259 ms
55,440 KB
testcase_14 AC 301 ms
59,040 KB
testcase_15 AC 328 ms
59,252 KB
testcase_16 AC 333 ms
58,964 KB
testcase_17 AC 366 ms
59,116 KB
testcase_18 AC 406 ms
59,160 KB
testcase_19 AC 402 ms
46,724 KB
testcase_20 AC 436 ms
48,028 KB
testcase_21 AC 436 ms
48,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int[] par;
  static int[] rank;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    par = new int[n + 1];
    rank = new int[n + 1];

    int M = sc.nextInt();
    init(n + 1);
    for(int i = 0; i < M; i++) {
      int a = sc.nextInt();
      int b = sc.nextInt();
      unite(a, b);
    }
    for(int i = 1; i < n + 1; i++) {
      System.out.println(find(i));
    }
  }
  static void init(int m) {
      for(int i = 0; i < m; i++) {
        par[i] = i;
        rank[i] = 1;
      }
    }
  static int find(int x) {
      if(par[x] == x) {
        return x;
      } else {
        return par[x] = find(par[x]);
      }
    }
  static void unite(int x, int y) {
      x = find(x);
      y = find(y);
      if(x != y) {
        if(rank[x] < rank[y]) {
          par[x] = y;
          rank[y] += rank[x];
        } else {
          if(rank[x] == rank[y]) {
            if(x > y) {
              par[x] = y;
              rank[y] += rank[x];
            } else {
              par[y] = x;
              rank[x] += rank[y];
            }
          } else {
            par[y] = x;
            rank[x] += rank[y];
          }
        }
      }
    }
  static boolean same(int x, int y) {
      return find(x) == find(y);
    }
}
0