結果

問題 No.2207 pCr検査
ユーザー tentententen
提出日時 2023-02-14 11:45:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,841 bytes
コンパイル時間 2,811 ms
コンパイル使用メモリ 86,244 KB
実行使用メモリ 51,468 KB
最終ジャッジ日時 2024-07-16 22:03:30
合計ジャッジ時間 11,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
51,468 KB
testcase_01 AC 58 ms
50,400 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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 k = sc.nextInt();
        int p = 0;
        HashMap<Integer, Integer> org = new HashMap<>();
        for (int i = 0; i < k; i++) {
            int x = sc.nextInt();
            int e = sc.nextInt();
            p = x;
            org.put(x, e);
        }
        int[] values = new int[p + 1];
        ArrayList<HashMap<Integer, Integer>> all = new ArrayList<>();
        for (int i = 0; i <= p; i++) {
            values[i] = i;
            all.add(new HashMap<>());
        }
        for (int i = 2; i <= p; i++) {
            if (values[i] > 1) {
                all.get(i).put(i, all.get(i).getOrDefault(i, 0) + 1);
                for (int j = 2; j * i <= p; j++) {
                    while (values[j * i] % i == 0) {
                        all.get(j * i).put(i, all.get(j * i).getOrDefault(i, 0) + 1);
                        values[j * i] /= i;
                    }
                }
            }
            for (int x : all.get(i - 1).keySet()) {
                all.get(i).put(x, all.get(i).getOrDefault(x, 0) + all.get(i - 1).get(x));
            }
        }
        TreeMap<Integer, Integer> sum = new TreeMap<>();
        for (int x : all.get(p).keySet()) {
            sum.put(x, all.get(p).get(x) - org.getOrDefault(x, 0));
            if (sum.get(x) == 0) {
                sum.remove(x);
            } else if (sum.get(x) < 0) {
                System.out.println("-1 -1");
                return;
            }
        }
        int start = sum.lastKey();
        for (int i = start; i < p; i++) {
            if (i > start && isPrime(i)) {
                break;
            }
            int x = p - i;
            int y;
            if (i < x) {
                y = i;
            } else {
                y = x;
                x = i;
            }
            boolean enable = true;
            for (int z : all.get(x).keySet()) {
                enable = (all.get(x).get(z) + all.get(y).getOrDefault(z, 0) == sum.getOrDefault(z, 0));
                if (!enable) {
                    break;
                }
            }
            if (enable) {
                System.out.println(p + " " + y);
                return;
            }
        }
        System.out.println("-1 -1");
    }
    
    static boolean isPrime(int x) {
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return true;
    }
}
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