結果

問題 No.1420 国勢調査 (Easy)
ユーザー tentententen
提出日時 2023-07-13 09:03:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,390 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 66,240 KB
最終ジャッジ日時 2023-10-12 22:28:13
合計ジャッジ時間 17,423 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,636 KB
testcase_01 AC 43 ms
49,384 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 133 ms
54,780 KB
testcase_13 RE -
testcase_14 AC 130 ms
55,488 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 239 ms
58,440 KB
testcase_28 AC 226 ms
58,252 KB
testcase_29 AC 176 ms
55,540 KB
testcase_30 AC 247 ms
58,388 KB
testcase_31 AC 236 ms
58,624 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]);
                if (parents[x] != parents[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);
            if (xx == yy) {
                return;
            }
            parents[yy] = xx;
            values[yy] ^= values[x] ^ values[y] ^ v;
        }
        
        public int getValue(int x) {
            find(x);
            if (x == parents[x]) {
                return values[x];
            } else {
                return values[x] ^ values[parents[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