結果

問題 No.126 2基のエレベータ
ユーザー thorikawathorikawa
提出日時 2015-05-16 20:45:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 982 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 77,160 KB
実行使用メモリ 59,332 KB
最終ジャッジ日時 2024-10-10 18:25:50
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
58,896 KB
testcase_01 AC 129 ms
59,044 KB
testcase_02 AC 116 ms
57,744 KB
testcase_03 AC 126 ms
58,932 KB
testcase_04 AC 129 ms
58,928 KB
testcase_05 AC 127 ms
58,840 KB
testcase_06 AC 127 ms
59,028 KB
testcase_07 AC 126 ms
58,664 KB
testcase_08 AC 126 ms
59,020 KB
testcase_09 AC 126 ms
58,700 KB
testcase_10 AC 129 ms
58,600 KB
testcase_11 AC 131 ms
58,784 KB
testcase_12 AC 130 ms
58,536 KB
testcase_13 AC 131 ms
58,836 KB
testcase_14 AC 131 ms
59,244 KB
testcase_15 AC 128 ms
58,544 KB
testcase_16 AC 130 ms
58,748 KB
testcase_17 AC 128 ms
58,708 KB
testcase_18 AC 130 ms
59,124 KB
testcase_19 AC 129 ms
59,332 KB
testcase_20 AC 126 ms
58,812 KB
testcase_21 AC 132 ms
58,888 KB
testcase_22 AC 127 ms
58,832 KB
testcase_23 AC 129 ms
58,712 KB
testcase_24 AC 130 ms
58,668 KB
testcase_25 AC 130 ms
58,844 KB
testcase_26 AC 128 ms
58,760 KB
testcase_27 AC 126 ms
58,676 KB
testcase_28 AC 130 ms
58,728 KB
testcase_29 AC 125 ms
58,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * Created by poly on 11/29/14.
 */
public class Main {
    static int[][][] memo;

    static int solve(int a, int b, int s) {
        if (s == 1) {
            return Math.abs(a - 1) + 1;
        }
        if (Math.abs(a - s) <= Math.abs(b - s)) {
            return Math.abs(a - s) + s;
        }
        if (memo[a][b][s] > 0) {
            return memo[a][b][s];
        }
        int bmove = Math.abs(b - s);
        int ans = bmove + Math.abs(s - 1) + solve(a, 1, 1);
        if (a != 0) {
            ans = Math.min(ans, bmove + Math.abs(s - a) + solve(a, a, a));
        }
        memo[a][b][s] = ans;
        return ans;
    }

    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        int s = scanner.nextInt();
        memo = new int[101][101][101];
        int ans = solve(a, b, s);
        System.out.println(ans);
    }
}
0