結果

問題 No.393 2本の竹
ユーザー KilisameKilisame
提出日時 2016-09-14 14:33:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 1,000 ms
コード長 3,038 bytes
コンパイル時間 3,862 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 142,664 KB
最終ジャッジ日時 2024-11-17 05:56:35
合計ジャッジ時間 10,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
52,252 KB
testcase_01 AC 144 ms
52,004 KB
testcase_02 AC 163 ms
52,060 KB
testcase_03 AC 161 ms
52,008 KB
testcase_04 AC 148 ms
52,192 KB
testcase_05 AC 159 ms
52,040 KB
testcase_06 AC 150 ms
52,216 KB
testcase_07 AC 171 ms
52,308 KB
testcase_08 AC 190 ms
52,308 KB
testcase_09 AC 508 ms
142,664 KB
testcase_10 AC 201 ms
64,524 KB
testcase_11 AC 242 ms
75,216 KB
testcase_12 AC 273 ms
73,484 KB
testcase_13 AC 216 ms
70,132 KB
testcase_14 AC 170 ms
55,100 KB
testcase_15 AC 163 ms
63,732 KB
testcase_16 AC 187 ms
76,724 KB
testcase_17 AC 157 ms
52,152 KB
testcase_18 AC 156 ms
52,348 KB
testcase_19 AC 144 ms
51,996 KB
testcase_20 AC 150 ms
52,336 KB
testcase_21 AC 160 ms
52,600 KB
testcase_22 AC 279 ms
78,312 KB
testcase_23 AC 211 ms
70,116 KB
testcase_24 AC 158 ms
52,588 KB
testcase_25 AC 149 ms
52,216 KB
testcase_26 AC 143 ms
51,772 KB
testcase_27 AC 417 ms
114,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class TwoBamboo {

    /* メモ化用Map */
    private static int[][] calculatedArray;

    /* 2本の竹のうち短い方の竹を対象にしてナップサック問題として考える。 */
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int d = cin.nextInt();
        int[][][] allQuestions = new int[d][2][];
        for (int i = 0; i < d; i++) {
            /* 2本の竹情報 */
            allQuestions[i][0] = new int[2];
            allQuestions[i][0][0] = cin.nextInt();
            allQuestions[i][0][1] = cin.nextInt();
            /* 要求数 */
            int requestsNum = cin.nextInt();
            /* 要求情報 */
            allQuestions[i][1] = new int[requestsNum];
            for (int j = 0; j < requestsNum; j++) {
                allQuestions[i][1][j] = cin.nextInt();
            }
        }
        for (int[][] question : allQuestions) {
            System.out.println(answer(question[0], question[1]));
        }
    }

    /* 各データセット単位で解く */
    private static int answer(int[] bamboo, int[] requests) {
        /* 2本の竹の総和に対し、要求された長さを小さい順に足していく。要求された長さの和が2本の竹の総和を越えたら、以降の要求には絶対に応えられないので無視する。また、長いほうの竹を越える要求も満たせないので無視する */
        Arrays.sort(requests);
        Arrays.sort(bamboo);
        calculatedArray = new int[requests.length][bamboo[0] + 1];
        return getNum(0, bamboo[0], bamboo[1], requests);
    }

    private static int getNum(int currentIndex, int shortBamboo, int longBamboo, int[] requests) {
        /* 要求されるのは長さのみで重みはないので、要求を小さい順にソートしたとき、R(n)の要求に応えずにR(n+1)の要求に応えたほうがよい、というケースはない。なので、必ずどちらかの竹から切リ出して次の要求を処理する */
        if (calculatedArray[currentIndex][shortBamboo] != 0) {
            /* 計算済み */
            return calculatedArray[currentIndex][shortBamboo];
        }
        int shortResult = 0;
        if (requests[currentIndex] <= shortBamboo) {
            shortResult++;
            if (currentIndex + 1 < requests.length) {
                shortResult += getNum(currentIndex + 1, shortBamboo - requests[currentIndex], longBamboo, requests);
            }
        }
        int longResult = 0;
        if (requests[currentIndex] <= longBamboo) {
            longResult++;
            if (currentIndex + 1 < requests.length) {
                longResult += getNum(currentIndex + 1, shortBamboo, longBamboo - requests[currentIndex], requests);
            }
        }
        int result = shortResult > longResult ? shortResult : longResult;
        calculatedArray[currentIndex][shortBamboo] = result;
        return result;
    }

}
0