結果

問題 No.583 鉄道同好会
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-28 00:17:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 1,331 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-05-01 18:17:27
合計ジャッジ時間 9,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,508 KB
testcase_01 AC 125 ms
41,588 KB
testcase_02 AC 131 ms
41,168 KB
testcase_03 AC 131 ms
41,120 KB
testcase_04 AC 140 ms
41,284 KB
testcase_05 AC 126 ms
41,380 KB
testcase_06 AC 117 ms
41,564 KB
testcase_07 AC 115 ms
41,404 KB
testcase_08 AC 115 ms
41,164 KB
testcase_09 AC 140 ms
41,292 KB
testcase_10 AC 181 ms
41,948 KB
testcase_11 AC 425 ms
48,024 KB
testcase_12 AC 551 ms
48,004 KB
testcase_13 AC 520 ms
48,108 KB
testcase_14 AC 531 ms
47,888 KB
testcase_15 AC 605 ms
48,092 KB
testcase_16 AC 767 ms
51,972 KB
testcase_17 AC 780 ms
53,924 KB
testcase_18 AC 760 ms
54,116 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();
    int m = sc.nextInt();
    par = new int[n];
    rank = new int[n];
    for(int i = 0; i < n; i++) {
      par[i] = i;
      rank[i] = 0;
    }
    int kiten = 0;
    int[] e = new int[n];
    for(int i = 0; i < m; i++) {
      int a = sc.nextInt();
      int b = sc.nextInt();
      e[a]++;
      e[b]++;
      unite(a, b);
    }
    for(int i = 0; i < n; i++) {
      if(e[i] % 2 == 1) kiten++;
    }
    int count = 0;
    for(int i = 0; i < n; i++) {
      for(int j = i + 1; j < n; j++) {
        if((e[i] > 0) && (e[j] > 0)) {
          if(!same(i, j)) count++;
        }
      }
    }
    String ans = "NO";
    if((count == 0) && ((kiten == 0) || (kiten == 2))) ans = "YES";
    System.out.println(ans);
  }

  public static int find(int x) {
    if(par[x] == x) {
      return x;
    } else {
      return par[x] = find(par[x]);
    }
  }

  public static void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if(rank[x] < rank[y]) {
      par[x] = y;
    } else {
      par[y] = x;
      if(rank[x] == rank[y]) rank[x]++;
    }
  }

  public static boolean same(int x, int y) {
    return find(x) == find(y);
  }
}
0