結果

問題 No.1420 国勢調査 (Easy)
ユーザー tentententen
提出日時 2023-07-12 10:17:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,116 bytes
コンパイル時間 2,710 ms
コンパイル使用メモリ 86,348 KB
実行使用メモリ 63,756 KB
最終ジャッジ日時 2024-09-14 00:22:47
合計ジャッジ時間 16,258 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
50,840 KB
testcase_01 AC 54 ms
50,396 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 147 ms
54,708 KB
testcase_13 RE -
testcase_14 AC 144 ms
55,076 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 272 ms
58,628 KB
testcase_28 AC 256 ms
58,500 KB
testcase_29 AC 204 ms
57,380 KB
testcase_30 AC 268 ms
58,784 KB
testcase_31 AC 259 ms
58,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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);
        for (int i = 0; i < n; i++) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt() - 1;
            int value = sc.nextInt();
            if (uft.same(left, right)) {
                if ((uft.getValue(left) ^ uft.getValue(right)) != value)  {
                    System.out.println(-1);
                    return;
                }
            } else {
                uft.unite(left, right, value);
            }
        }
        System.out.println(String.join("\n", Arrays.stream(uft.values).mapToObj(String::valueOf).toArray(String[]::new)));
    }
    
    static class UnionFindTree {
        int[] parents;
        int[] values;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            values = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                int p = find(parents[x]);
                values[x] ^= values[parents[x]];
                return parents[x] = p;
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y, int v) {
            int xx = find(x);
            int yy = find(y);
            parents[yy] = xx;
            values[yy] ^= values[x] ^ values[y] ^ v;
        }
        
        public int getValue(int x) {
            find(x);
            return values[x];
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0