結果

問題 No.2202 贅沢てりたまチキン
ユーザー tentententen
提出日時 2024-07-30 15:40:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 2,065 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 79,952 KB
実行使用メモリ 73,912 KB
最終ジャッジ日時 2024-07-30 15:40:28
合計ジャッジ時間 10,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
51,292 KB
testcase_01 AC 68 ms
51,228 KB
testcase_02 AC 67 ms
51,312 KB
testcase_03 AC 69 ms
51,064 KB
testcase_04 AC 69 ms
51,248 KB
testcase_05 AC 67 ms
51,256 KB
testcase_06 AC 67 ms
51,000 KB
testcase_07 AC 65 ms
50,972 KB
testcase_08 AC 67 ms
51,108 KB
testcase_09 AC 68 ms
51,304 KB
testcase_10 AC 91 ms
52,168 KB
testcase_11 AC 64 ms
51,048 KB
testcase_12 AC 67 ms
51,148 KB
testcase_13 AC 71 ms
51,236 KB
testcase_14 AC 403 ms
73,912 KB
testcase_15 AC 370 ms
73,352 KB
testcase_16 AC 346 ms
59,300 KB
testcase_17 AC 409 ms
67,080 KB
testcase_18 AC 268 ms
58,116 KB
testcase_19 AC 270 ms
58,332 KB
testcase_20 AC 404 ms
59,140 KB
testcase_21 AC 373 ms
59,476 KB
testcase_22 AC 322 ms
58,848 KB
testcase_23 AC 330 ms
59,612 KB
testcase_24 AC 342 ms
59,072 KB
testcase_25 AC 405 ms
59,216 KB
testcase_26 AC 389 ms
67,400 KB
testcase_27 AC 382 ms
67,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(n * 2);
        while (m-- > 0) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            uft.unite(a, b + n);
            uft.unite(a + n, b);
        }
        boolean enable = IntStream.range(0, n).allMatch(i -> uft.same(i, i + n));
        System.out.println(enable ? "Yes" : "No");
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int size) {
            parents = IntStream.range(0, size).toArray();
        }
        
        public int find(int x) {
            return x == parents[x] ? x : (parents[x] = find(parents[x]));
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0