結果
| 問題 |
No.2329 Nafmo、イカサマをする
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-05-30 15:08:48 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,358 bytes |
| コンパイル時間 | 4,253 ms |
| コンパイル使用メモリ | 84,856 KB |
| 実行使用メモリ | 582,444 KB |
| 最終ジャッジ日時 | 2024-12-28 11:55:50 |
| 合計ジャッジ時間 | 22,115 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 TLE * 3 MLE * 1 |
ソースコード
import java.io.*;
import java.util.*;
import java.util.stream.*;
public class Main {
static int[] values;
static ArrayList<ArrayList<HashMap<Long, Long>>> dp = new ArrayList<>();
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int n = sc.nextInt();
long m = sc.nextLong();
int k = sc.nextInt();
values = new int[n];
for (int i = 0; i < n; i++) {
values[i] = sc.nextInt();
dp.add(new ArrayList<>());
for (int j = 0; j < k; j++) {
dp.get(i).add(new HashMap<>());
}
}
System.out.println(m - dfw(n - 1, k - 1, m));
}
static long dfw(int idx, int v, long w) {
if (w < 0) {
return Long.MAX_VALUE / 2;
}
if (v < 0 || idx < 0) {
return w;
}
if (!dp.get(idx).get(v).containsKey(w)) {
long ans = Math.min(w, Math.min(dfw(idx - 1, v, w), dfw(idx, v - 1, w - values[idx])));
dp.get(idx).get(v).put(w, ans);
}
return dp.get(idx).get(v).get(w);
}
}
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();
}
}
tenten