結果

問題 No.158 奇妙なお使い
ユーザー ぴろずぴろず
提出日時 2015-05-15 14:06:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,064 ms / 5,000 ms
コード長 1,403 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 78,212 KB
実行使用メモリ 104,696 KB
最終ジャッジ日時 2024-11-13 22:27:00
合計ジャッジ時間 11,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
103,704 KB
testcase_01 AC 221 ms
102,944 KB
testcase_02 AC 205 ms
102,452 KB
testcase_03 AC 205 ms
102,300 KB
testcase_04 AC 1,064 ms
104,460 KB
testcase_05 AC 208 ms
102,460 KB
testcase_06 AC 206 ms
102,304 KB
testcase_07 AC 210 ms
102,600 KB
testcase_08 AC 211 ms
102,688 KB
testcase_09 AC 224 ms
103,304 KB
testcase_10 AC 218 ms
102,696 KB
testcase_11 AC 224 ms
103,264 KB
testcase_12 AC 202 ms
102,688 KB
testcase_13 AC 207 ms
102,312 KB
testcase_14 AC 221 ms
102,440 KB
testcase_15 AC 241 ms
103,732 KB
testcase_16 AC 233 ms
103,752 KB
testcase_17 AC 337 ms
103,936 KB
testcase_18 AC 231 ms
103,832 KB
testcase_19 AC 215 ms
102,860 KB
testcase_20 AC 225 ms
103,472 KB
testcase_21 AC 219 ms
103,456 KB
testcase_22 AC 253 ms
104,696 KB
testcase_23 AC 221 ms
103,916 KB
testcase_24 AC 222 ms
103,484 KB
testcase_25 AC 203 ms
102,552 KB
testcase_26 AC 227 ms
103,708 KB
testcase_27 AC 204 ms
102,568 KB
testcase_28 AC 268 ms
102,756 KB
testcase_29 AC 225 ms
103,688 KB
testcase_30 AC 270 ms
103,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no158;

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

public class Main implements Runnable {

	public static void main(String[] args) {
		try {
			new Thread(null, new Main(), "", 16 * 1024 * 1024).start();
		} catch (SecurityException e) {
			System.out.println("(◞‸◟)");
		}
	}

	int a1000,a100,a1,b1000,b100,b1,db,c1000,c100,c1,dc;
	int[][][] dp = new int[11][101][10001];
	public void run() {
		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));
		sc.close();
	}
	public int dfs(int a,int b,int c) {
		if (a < 0 || b < 0 || c < 0) {
			return 0; //苦し紛れ
		}
		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