結果
問題 | No.1430 Coup de Coupon |
ユーザー | tenten |
提出日時 | 2021-04-14 11:16:31 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,383 bytes |
コンパイル時間 | 2,792 ms |
コンパイル使用メモリ | 79,616 KB |
実行使用メモリ | 40,932 KB |
最終ジャッジ日時 | 2024-06-30 12:01:19 |
合計ジャッジ時間 | 7,741 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
37,212 KB |
testcase_01 | AC | 55 ms
36,992 KB |
testcase_02 | AC | 53 ms
37,252 KB |
testcase_03 | AC | 108 ms
39,852 KB |
testcase_04 | AC | 131 ms
40,932 KB |
testcase_05 | AC | 125 ms
40,024 KB |
testcase_06 | TLE | - |
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 | -- | - |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<Integer> percents = new ArrayList<>(); static ArrayList<Integer> prices = new ArrayList<>(); static int[][][] dp; static int[] costs; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int c = sc.nextInt(); costs = new int[n]; for (int i = 0; i < n; i++) { costs[i] = sc.nextInt(); } Arrays.sort(costs); for (int i = 0; i < c; i++) { int type = sc.nextInt(); int x = sc.nextInt(); if (type == 1) { prices.add(x); } else { percents.add(x); } } Collections.sort(prices); Collections.sort(percents); dp = new int[n][prices.size() + 1][percents.size() + 1]; System.out.println(dfw(n - 1, prices.size(), percents.size())); } static int dfw(int idx, int pr, int pe) { if (idx < 0) { return 0; } if (dp[idx][pr][pe] == 0) { if (pr == 0 && pe == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr, pe) + costs[idx]; } else if (pr == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr, pe - 1) + costs[idx] / 100 * (100 - percents.get(pe - 1)); } else if (pe == 0) { dp[idx][pr][pe] = dfw(idx - 1, pr - 1, pe) + Math.max(0, costs[idx] - prices.get(pr - 1)); } else { dp[idx][pr][pe] = Math.min(dfw(idx - 1, pr, pe - 1) + costs[idx] / 100 * (100 - percents.get(pe - 1)), dfw(idx - 1, pr - 1, pe) + Math.max(0, costs[idx] - prices.get(pr - 1))); } } return dp[idx][pr][pe]; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }