結果
問題 | No.1430 Coup de Coupon |
ユーザー | 小野寺健 |
提出日時 | 2021-05-20 12:31:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 854 ms / 2,000 ms |
コード長 | 1,636 bytes |
コンパイル時間 | 4,362 ms |
コンパイル使用メモリ | 80,744 KB |
実行使用メモリ | 185,360 KB |
最終ジャッジ日時 | 2024-10-10 07:14:03 |
合計ジャッジ時間 | 17,588 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
54,200 KB |
testcase_01 | AC | 140 ms
53,756 KB |
testcase_02 | AC | 138 ms
53,940 KB |
testcase_03 | AC | 241 ms
57,480 KB |
testcase_04 | AC | 274 ms
57,896 KB |
testcase_05 | AC | 257 ms
57,492 KB |
testcase_06 | AC | 779 ms
185,148 KB |
testcase_07 | AC | 854 ms
185,360 KB |
testcase_08 | AC | 327 ms
58,896 KB |
testcase_09 | AC | 553 ms
67,864 KB |
testcase_10 | AC | 495 ms
77,996 KB |
testcase_11 | AC | 568 ms
85,336 KB |
testcase_12 | AC | 629 ms
93,276 KB |
testcase_13 | AC | 638 ms
112,308 KB |
testcase_14 | AC | 730 ms
128,608 KB |
testcase_15 | AC | 735 ms
128,732 KB |
testcase_16 | AC | 793 ms
132,840 KB |
testcase_17 | AC | 769 ms
142,788 KB |
testcase_18 | AC | 685 ms
112,444 KB |
testcase_19 | AC | 650 ms
112,304 KB |
testcase_20 | AC | 506 ms
83,964 KB |
testcase_21 | AC | 279 ms
57,584 KB |
testcase_22 | AC | 151 ms
54,212 KB |
testcase_23 | AC | 195 ms
54,232 KB |
testcase_24 | AC | 202 ms
54,152 KB |
testcase_25 | AC | 260 ms
56,928 KB |
testcase_26 | AC | 351 ms
59,136 KB |
ソースコード
import java.util.Scanner; import java.util.List; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; public class No1430 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int C = scan.nextInt(); List<Integer> P = new ArrayList<Integer>(); for (int i=0; i < N; i++) { P.add(scan.nextInt()); } Collections.sort(P, Collections.reverseOrder()); List<Integer> TY = new ArrayList<Integer>(); List<Integer> TP = new ArrayList<Integer>(); for (int i=0; i < C; i++) { int T = scan.nextInt(); int X = scan.nextInt(); if (T == 1) { TY.add(X); } else { TP.add(X); } } scan.close(); Collections.sort(TY, Collections.reverseOrder()); Collections.sort(TP, Collections.reverseOrder()); int L = TY.size(); int[][] DP = new int[N+1][L+1]; for (int i=0; i <= N; i++) { Arrays.fill(DP[i], Integer.MAX_VALUE); } DP[0][0] = 0; for (int i=0; i < N; i++) { for (int j=0; j <= L; j++) { int price = P.get(i); int cost; if (i-j < 0) { cost = 0; } else if (i-j < TP.size()) { cost = price * (100 - TP.get(i-j)) / 100; } else { cost = price; } DP[i+1][j] = DP[i][j] == Integer.MAX_VALUE ? DP[i+1][j] : Math.min(DP[i+1][j], DP[i][j] + cost); if (j < L) { cost = price - Math.min(price, TY.get(j)); DP[i+1][j+1] = DP[i][j] == Integer.MAX_VALUE ? DP[i+1][j+1] : Math.min(DP[i+1][j+1], DP[i][j] + cost); } } } int min = Integer.MAX_VALUE; for (int j=0; j <=L; j++) { min = Math.min(min, DP[N][j]); } System.out.println(min); } }