結果

問題 No.158 奇妙なお使い
ユーザー ぴろずぴろず
提出日時 2015-02-27 00:09:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,151 ms / 5,000 ms
コード長 1,281 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 125,808 KB
最終ジャッジ日時 2024-06-28 22:21:31
合計ジャッジ時間 12,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
125,080 KB
testcase_01 AC 262 ms
124,968 KB
testcase_02 AC 241 ms
124,868 KB
testcase_03 AC 241 ms
124,280 KB
testcase_04 AC 1,151 ms
125,640 KB
testcase_05 AC 236 ms
124,604 KB
testcase_06 AC 244 ms
124,360 KB
testcase_07 AC 242 ms
124,424 KB
testcase_08 AC 237 ms
124,064 KB
testcase_09 AC 258 ms
125,180 KB
testcase_10 AC 247 ms
124,436 KB
testcase_11 AC 255 ms
125,168 KB
testcase_12 AC 237 ms
124,068 KB
testcase_13 AC 240 ms
124,264 KB
testcase_14 AC 255 ms
124,196 KB
testcase_15 AC 276 ms
125,132 KB
testcase_16 AC 262 ms
125,336 KB
testcase_17 AC 369 ms
125,676 KB
testcase_18 AC 277 ms
125,108 KB
testcase_19 AC 257 ms
124,528 KB
testcase_20 AC 259 ms
125,484 KB
testcase_21 AC 251 ms
124,704 KB
testcase_22 AC 278 ms
125,808 KB
testcase_23 AC 256 ms
125,376 KB
testcase_24 AC 256 ms
125,036 KB
testcase_25 AC 239 ms
124,256 KB
testcase_26 AC 262 ms
124,912 KB
testcase_27 AC 240 ms
124,608 KB
testcase_28 AC 291 ms
124,596 KB
testcase_29 AC 260 ms
125,276 KB
testcase_30 AC 306 ms
124,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no158;

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int a1000;
	static int a100;
	static int a1;
	static int b1000;
	static int b100;
	static int b1;
	static int db;
	static int c1000;
	static int c100;
	static int c1;
	static int dc;
	static int[][][] dp = new int[15][110][10100];
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		a1000 = sc.nextInt();
		a100 = sc.nextInt();
		a1 = sc.nextInt();
		db = sc.nextInt();
		b1000 = sc.nextInt();
		b100 = sc.nextInt();
		b1 = sc.nextInt();
		dc = sc.nextInt();
		c1000 = sc.nextInt();
		c100 = sc.nextInt();
		c1 = sc.nextInt();
		for(int i=0;i<=10;i++) {
			for(int j=0;j<=100;j++) {
				Arrays.fill(dp[i][j], -1);
			}
		}
		System.out.println(dfs(a1000,a100,a1));
	}
	public static int dfs(int a,int b,int c) {
		if (dp[a][b][c] >= 0) {
			return dp[a][b][c];
		}
		int max = 0;
		for(int i=0;i<=a;i++) {
			for(int j=0;j<=b;j++) {
				int bx = db - i * 1000 - j * 100;
				if (bx >= 0 && bx <= c) {
					max = Math.max(max, dfs(a-i+b1000, b-j+b100, c-bx+b1) + 1);
				}
				int cx = dc - i * 1000 - j * 100;
				if (cx >= 0 && cx <= c) {
					max = Math.max(max, dfs(a-i+c1000, b-j+c100, c-cx+c1) + 1);
				}
			}
		}
		return dp[a][b][c] = max;
	}

}
0