結果
| 問題 |
No.636 硬貨の枚数2
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2023-06-09 17:00:57 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| コード長 | 2,407 bytes |
| コンパイル時間 | 3,109 ms |
| コンパイル使用メモリ | 85,228 KB |
| 実行使用メモリ | 51,560 KB |
| 最終ジャッジ日時 | 2025-01-01 21:29:22 |
| 合計ジャッジ時間 | 9,064 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 65 |
ソースコード
import java.io.*;
import java.util.*;
import java.util.stream.*;
public class Main {
static int[][] dp;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
char[] inputs = sc.next().toCharArray();
int length = inputs.length;
int[] values = new int[length * 2];
for (int i = 0; i < length; i++) {
int x = inputs[i] - '0';
values[i * 2] = x / 5;
values[i * 2 + 1] = x % 5;
}
int[][] dp = new int[length * 2 + 2][2];
dp[length * 2][1] = 1;
for (int i = length * 2 - 1; i >= 0; i--) {
if (i % 2 == 0) {
dp[i][0] = Math.min(dp[i + 1][0] + values[i], dp[i + 1][1] + values[i] + 1);
dp[i][1] = Math.min(dp[i + 1][0] + 2 - values[i], dp[i + 1][1] + 2 - (values[i] + 1));
} else {
dp[i][0] = Math.min(dp[i + 1][0] + values[i], dp[i + 1][1] + values[i] + 1);
dp[i][1] = Math.min(dp[i + 1][0] + 5 - values[i], dp[i + 1][1] + 5 - (values[i] + 1));
}
}
dp[0][1]++;
System.out.println(Math.min(dp[0][1], dp[0][0]));
}
}
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