結果

問題 No.1420 国勢調査 (Easy)
ユーザー tentententen
提出日時 2023-07-12 10:17:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,116 bytes
コンパイル時間 3,129 ms
コンパイル使用メモリ 81,512 KB
実行使用メモリ 66,204 KB
最終ジャッジ日時 2023-10-12 00:27:41
合計ジャッジ時間 19,858 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
51,040 KB
testcase_01 AC 42 ms
49,400 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 127 ms
54,792 KB
testcase_13 RE -
testcase_14 AC 126 ms
54,964 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 246 ms
58,484 KB
testcase_28 AC 224 ms
58,448 KB
testcase_29 AC 183 ms
57,724 KB
testcase_30 AC 243 ms
58,924 KB
testcase_31 AC 227 ms
58,500 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