結果
問題 | No.158 奇妙なお使い |
ユーザー | htensai |
提出日時 | 2020-05-14 15:56:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 390 ms / 5,000 ms |
コード長 | 1,474 bytes |
コンパイル時間 | 2,102 ms |
コンパイル使用メモリ | 79,296 KB |
実行使用メモリ | 57,880 KB |
最終ジャッジ日時 | 2024-09-15 08:20:15 |
合計ジャッジ時間 | 7,748 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
53,648 KB |
testcase_01 | AC | 130 ms
53,876 KB |
testcase_02 | AC | 132 ms
54,036 KB |
testcase_03 | AC | 124 ms
53,780 KB |
testcase_04 | AC | 390 ms
57,880 KB |
testcase_05 | AC | 129 ms
54,028 KB |
testcase_06 | AC | 131 ms
53,904 KB |
testcase_07 | AC | 136 ms
53,984 KB |
testcase_08 | AC | 131 ms
53,724 KB |
testcase_09 | AC | 130 ms
53,652 KB |
testcase_10 | AC | 134 ms
54,064 KB |
testcase_11 | AC | 138 ms
53,844 KB |
testcase_12 | AC | 130 ms
53,764 KB |
testcase_13 | AC | 130 ms
54,224 KB |
testcase_14 | AC | 135 ms
53,924 KB |
testcase_15 | AC | 156 ms
54,584 KB |
testcase_16 | AC | 134 ms
53,960 KB |
testcase_17 | AC | 173 ms
54,232 KB |
testcase_18 | AC | 208 ms
57,348 KB |
testcase_19 | AC | 133 ms
54,032 KB |
testcase_20 | AC | 141 ms
54,840 KB |
testcase_21 | AC | 166 ms
56,152 KB |
testcase_22 | AC | 168 ms
56,320 KB |
testcase_23 | AC | 128 ms
53,876 KB |
testcase_24 | AC | 129 ms
53,984 KB |
testcase_25 | AC | 131 ms
54,084 KB |
testcase_26 | AC | 134 ms
54,088 KB |
testcase_27 | AC | 137 ms
53,908 KB |
testcase_28 | AC | 138 ms
53,868 KB |
testcase_29 | AC | 138 ms
54,120 KB |
testcase_30 | AC | 159 ms
54,172 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int[] aArr = new int[4]; int[] bArr = new int[4]; for (int i = 0; i < 4; i++) { aArr[i] = sc.nextInt(); } for (int i = 0; i < 4; i++) { bArr[i] = sc.nextInt(); } HashMap<Integer, Integer> dp = new HashMap<>(); dp.put(a * 1000 + b, c); int count = -1; while (dp.size() > 0) { HashMap<Integer, Integer> next = new HashMap<>(); for (Map.Entry<Integer, Integer> entry : dp.entrySet()) { int x = entry.getKey() / 1000; int y = entry.getKey() % 1000; int z = entry.getValue(); setDP(x, y, z, aArr, next); setDP(x, y, z, bArr, next); } dp = next; count++; } System.out.println(count); } static boolean setDP(int a, int b, int c, int[] arr, HashMap<Integer, Integer> dp) { if (a * 1000 + b * 100 + c < arr[0]) { return false; } int x = arr[0]; while (x >= 1000 && a > 0) { x -= 1000; a--; } while (x >= 100 && b > 0) { x -= 100; b--; } c -= x; if (c < 0) { return false; } a += arr[1]; b += arr[2]; c += arr[3]; int key = a * 1000 + b; if (!dp.containsKey(key) || dp.get(key) < c) { dp.put(key, c); } return true; } }