結果

問題 No.2039 Copy and Avoid
ユーザー tentententen
提出日時 2023-06-30 16:18:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,198 ms / 2,000 ms
コード長 3,000 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 94,740 KB
実行使用メモリ 73,268 KB
最終ジャッジ日時 2023-09-21 09:53:25
合計ジャッジ時間 14,430 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,130 ms
70,712 KB
testcase_01 AC 41 ms
49,796 KB
testcase_02 AC 356 ms
62,916 KB
testcase_03 AC 39 ms
49,888 KB
testcase_04 AC 40 ms
49,552 KB
testcase_05 AC 522 ms
67,800 KB
testcase_06 AC 41 ms
49,468 KB
testcase_07 AC 39 ms
49,488 KB
testcase_08 AC 40 ms
49,764 KB
testcase_09 AC 40 ms
49,340 KB
testcase_10 AC 40 ms
49,460 KB
testcase_11 AC 40 ms
47,400 KB
testcase_12 AC 43 ms
49,396 KB
testcase_13 AC 1,077 ms
69,364 KB
testcase_14 AC 1,198 ms
73,268 KB
testcase_15 AC 1,125 ms
70,948 KB
testcase_16 AC 1,143 ms
72,508 KB
testcase_17 AC 390 ms
64,360 KB
testcase_18 AC 469 ms
63,248 KB
testcase_19 AC 407 ms
64,696 KB
testcase_20 AC 510 ms
65,828 KB
testcase_21 AC 43 ms
49,564 KB
testcase_22 AC 42 ms
49,892 KB
testcase_23 AC 41 ms
49,436 KB
testcase_24 AC 41 ms
49,596 KB
testcase_25 AC 43 ms
49,444 KB
testcase_26 AC 41 ms
49,456 KB
testcase_27 AC 65 ms
52,800 KB
testcase_28 AC 41 ms
47,908 KB
testcase_29 AC 41 ms
49,360 KB
testcase_30 AC 40 ms
49,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long paste;
    static long copy;
    static HashMap<Integer, Long> dp = new HashMap<>();
    static HashMap<Integer, Integer> prohibit = new HashMap<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        paste = sc.nextInt();
        copy = sc.nextInt();
        dp.put(1, -copy);
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt();
            for (int j = 1; j <= Math.sqrt(x); j++) {
                if (x % j == 0) {
                    prohibit.put(j, Math.min(prohibit.getOrDefault(j, Integer.MAX_VALUE), x));
                    prohibit.put(x / j, Math.min(prohibit.getOrDefault(x / j, Integer.MAX_VALUE), x));
                }
            }
        }
        long ans = dfw(n);
        if (ans >= Long.MAX_VALUE / 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static long dfw(int x) {
        if (!dp.containsKey(x)) {
            long ans = Long.MAX_VALUE / 2;
            for (int i = 1; i <= Math.sqrt(x); i++) {
                if (x % i == 0) {
                    int y = x / i;
                    if (prohibit.getOrDefault(i, Integer.MAX_VALUE) > x) {
                        ans = Math.min(ans, dfw(i) + (x / i - 1) * paste + copy);
                    }
                    if (i > 1 && prohibit.getOrDefault(x / i, Integer.MAX_VALUE) > x) {
                        ans = Math.min(ans, dfw(x / i) + (i - 1) * paste + copy);
                    }
                }
            }
            dp.put(x, ans);
        }
        return dp.get(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