結果

問題 No.2291 Union Find Estimate
ユーザー tentententen
提出日時 2023-05-08 10:03:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 4,223 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 92,492 KB
実行使用メモリ 59,112 KB
最終ジャッジ日時 2024-11-25 04:37:48
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,176 KB
testcase_01 AC 53 ms
50,180 KB
testcase_02 AC 266 ms
59,112 KB
testcase_03 AC 159 ms
55,192 KB
testcase_04 AC 143 ms
52,392 KB
testcase_05 AC 141 ms
52,228 KB
testcase_06 AC 122 ms
52,520 KB
testcase_07 AC 101 ms
52,164 KB
testcase_08 AC 124 ms
52,912 KB
testcase_09 AC 128 ms
52,468 KB
testcase_10 AC 144 ms
54,868 KB
testcase_11 AC 152 ms
55,608 KB
testcase_12 AC 168 ms
55,380 KB
testcase_13 AC 116 ms
52,732 KB
testcase_14 AC 157 ms
53,336 KB
testcase_15 AC 151 ms
54,536 KB
testcase_16 AC 143 ms
52,292 KB
testcase_17 AC 115 ms
52,360 KB
testcase_18 AC 118 ms
52,572 KB
testcase_19 AC 152 ms
55,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(n);
        StringBuilder sb = new StringBuilder();
        while(q-- > 0) {
            HashMap<Character, Integer> sames = new HashMap<>();
            char[] inputs = sc.next().toCharArray();
            for (int i = 0; i < n; i++) {
                if (inputs[i] >= '0' && inputs[i] <= '9') {
                    uft.setNum(i, inputs[i] - '0');
                } else if (inputs[i] == '?') {
                    continue;
                } else {
                    if (sames.containsKey(inputs[i])) {
                        uft.unite(sames.get(inputs[i]), i);
                    } else {
                        sames.put(inputs[i], i);
                    }
                }
            }
            sb.append(uft.sum).append("\n");
        }
        System.out.print(sb);
    }
    
    static class UnionFindTree {
        int[] parents;
        int[] nums;
        long sum;
        static long BASE = pow(10, MOD - 2);

        public UnionFindTree(int size) {
            parents = new int[size];
            nums = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
                nums[i] = -1;
            }
            sum = pow(10, size);
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                return 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) {
                return;
            }
            if (nums[xx] == -1) {
                parents[xx] = yy;
                sum *= BASE;
                sum %= MOD;
            } else if (nums[yy] == -1) {
                parents[yy] = xx;
                sum *= BASE;
                sum %= MOD;
            } else {
                parents[yy] = xx;
                if (nums[xx] != nums[yy]) {
                    sum = 0;
                }
            }
        }
        
        public void setNum(int x, int v) {
            int idx = find(x);
            if (nums[idx] == -1) {
                nums[idx] = v;
                sum *= BASE;
                sum %= MOD;
            } else if (nums[idx] != v) {
                sum = 0;
            }
        }
        
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}

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