結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー tentententen
提出日時 2024-07-02 13:48:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 2,414 bytes
コンパイル時間 2,702 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 59,760 KB
最終ジャッジ日時 2024-11-14 12:26:12
合計ジャッジ時間 9,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
51,472 KB
testcase_01 AC 75 ms
51,388 KB
testcase_02 AC 75 ms
51,492 KB
testcase_03 AC 353 ms
59,760 KB
testcase_04 AC 208 ms
56,476 KB
testcase_05 AC 286 ms
58,332 KB
testcase_06 AC 319 ms
58,316 KB
testcase_07 AC 270 ms
58,268 KB
testcase_08 AC 325 ms
58,796 KB
testcase_09 AC 307 ms
58,712 KB
testcase_10 AC 348 ms
59,708 KB
testcase_11 AC 309 ms
59,588 KB
testcase_12 AC 285 ms
57,692 KB
testcase_13 AC 194 ms
55,832 KB
testcase_14 AC 248 ms
56,716 KB
testcase_15 AC 241 ms
57,612 KB
testcase_16 AC 323 ms
59,556 KB
testcase_17 AC 196 ms
55,884 KB
testcase_18 AC 273 ms
57,480 KB
testcase_19 AC 185 ms
55,828 KB
testcase_20 AC 251 ms
57,708 KB
testcase_21 AC 224 ms
56,484 KB
testcase_22 AC 214 ms
56,004 KB
testcase_23 AC 75 ms
51,444 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) {
            uft.unite(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        int ans = 0;
        for (int x : uft.getCounts()) {
            ans += x % 2;
        }
        System.out.println(ans / 2);
    }
    
    static class UnionFindTree {
        int[] parents;
        int[] counts;
        
        public UnionFindTree(int size) {
            parents = IntStream.range(0, size).toArray();
            counts = IntStream.range(0, size).map(i -> 1).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) {
            int xx = find(x);
            int yy = find(y);
            if (xx != yy) {
                parents[xx] = yy;
                counts[yy] += counts[xx];
            }
        }
        
        public List<Integer> getCounts() {
            return IntStream.range(0, parents.length)
                .filter(i -> parents[i] == i)
                .map(i -> counts[i])
                .boxed()
                .toList();
        }
    }
}
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