結果

問題 No.2202 贅沢てりたまチキン
ユーザー tentententen
提出日時 2024-04-30 15:17:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 2,451 bytes
コンパイル時間 3,089 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 73,404 KB
最終ジャッジ日時 2024-11-20 11:14:45
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,308 KB
testcase_01 AC 55 ms
50,376 KB
testcase_02 AC 56 ms
50,268 KB
testcase_03 AC 56 ms
50,288 KB
testcase_04 AC 56 ms
49,912 KB
testcase_05 AC 55 ms
50,084 KB
testcase_06 AC 55 ms
50,532 KB
testcase_07 AC 54 ms
50,264 KB
testcase_08 AC 57 ms
50,388 KB
testcase_09 AC 56 ms
50,088 KB
testcase_10 AC 64 ms
50,084 KB
testcase_11 AC 55 ms
49,892 KB
testcase_12 AC 58 ms
50,028 KB
testcase_13 AC 57 ms
50,300 KB
testcase_14 AC 390 ms
73,076 KB
testcase_15 AC 394 ms
73,404 KB
testcase_16 AC 347 ms
59,160 KB
testcase_17 AC 367 ms
65,012 KB
testcase_18 AC 257 ms
56,428 KB
testcase_19 AC 279 ms
57,544 KB
testcase_20 AC 367 ms
58,776 KB
testcase_21 AC 374 ms
58,592 KB
testcase_22 AC 331 ms
58,548 KB
testcase_23 AC 354 ms
58,684 KB
testcase_24 AC 339 ms
58,492 KB
testcase_25 AC 479 ms
58,592 KB
testcase_26 AC 372 ms
65,880 KB
testcase_27 AC 364 ms
66,872 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);
        while (m-- > 0) {
            uft.uniteAll(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        boolean enable = true;
        for (int i = 0; i < n && enable; i++) {
            enable = uft.sameAll(i);
        }
        System.out.println(enable ? "Yes" : "No");
    }
    
    static class UnionFindTree {
        int size;
        int[] parents;
        
        public UnionFindTree(int size) {
            this.size = size;
            parents = new int[size * 2];
            for (int i = 0; i < size * 2; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                return parents[x] = find(parents[x]);
            }
        }
        
        private boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public boolean sameAll(int x) {
            return same(x, x + size);
        }
        
        private void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
        
        public void uniteAll(int x, int y) {
            unite(x, y + size);
            unite(x + size, 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