結果

問題 No.281 門松と魔法(1)
ユーザー ぴろずぴろず
提出日時 2015-09-18 23:09:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,526 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 56,020 KB
最終ジャッジ日時 2024-11-06 19:10:28
合計ジャッジ時間 12,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,836 KB
testcase_01 AC 142 ms
53,956 KB
testcase_02 AC 136 ms
53,772 KB
testcase_03 AC 138 ms
53,856 KB
testcase_04 AC 142 ms
54,568 KB
testcase_05 AC 141 ms
53,916 KB
testcase_06 AC 142 ms
54,036 KB
testcase_07 AC 144 ms
54,192 KB
testcase_08 AC 139 ms
53,984 KB
testcase_09 AC 142 ms
53,884 KB
testcase_10 AC 140 ms
53,784 KB
testcase_11 AC 141 ms
54,232 KB
testcase_12 AC 138 ms
54,100 KB
testcase_13 AC 141 ms
53,828 KB
testcase_14 AC 143 ms
54,032 KB
testcase_15 AC 139 ms
54,172 KB
testcase_16 AC 139 ms
53,872 KB
testcase_17 AC 137 ms
54,068 KB
testcase_18 AC 139 ms
54,128 KB
testcase_19 AC 140 ms
54,100 KB
testcase_20 AC 137 ms
53,900 KB
testcase_21 AC 140 ms
53,900 KB
testcase_22 AC 136 ms
54,192 KB
testcase_23 AC 142 ms
54,076 KB
testcase_24 AC 142 ms
54,316 KB
testcase_25 AC 139 ms
54,124 KB
testcase_26 AC 142 ms
53,976 KB
testcase_27 AC 137 ms
54,032 KB
testcase_28 AC 137 ms
54,088 KB
testcase_29 AC 143 ms
56,020 KB
testcase_30 AC 139 ms
54,076 KB
testcase_31 AC 138 ms
54,072 KB
testcase_32 AC 138 ms
54,040 KB
testcase_33 AC 143 ms
54,088 KB
testcase_34 WA -
testcase_35 AC 141 ms
54,148 KB
testcase_36 AC 141 ms
54,040 KB
testcase_37 AC 140 ms
54,180 KB
testcase_38 AC 135 ms
53,948 KB
testcase_39 AC 138 ms
54,100 KB
testcase_40 AC 139 ms
54,048 KB
testcase_41 AC 133 ms
54,116 KB
testcase_42 AC 140 ms
54,072 KB
testcase_43 AC 136 ms
54,064 KB
testcase_44 AC 137 ms
54,328 KB
testcase_45 AC 136 ms
53,964 KB
testcase_46 AC 137 ms
54,084 KB
testcase_47 AC 123 ms
53,000 KB
testcase_48 AC 137 ms
53,980 KB
testcase_49 AC 141 ms
54,080 KB
testcase_50 AC 139 ms
54,032 KB
testcase_51 AC 144 ms
53,800 KB
testcase_52 AC 139 ms
54,012 KB
testcase_53 AC 140 ms
54,152 KB
testcase_54 AC 143 ms
54,216 KB
testcase_55 AC 141 ms
54,120 KB
testcase_56 AC 141 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no280;

import java.util.Scanner;

public class Main {

	public static long INF = 1 << 60;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int[] h = new int[3];
		for(int i=0;i<3;i++) {
			h[i] = sc.nextInt();
		}

		if (d == 0) {
			if (h[0] != h[1] && h[1] != h[2] && h[2] != h[0] && (h[1] > h[0] && h[1] > h[2]) || (h[1] < h[0] && h[1] < h[2])) {
				System.out.println(0);
			}else{
				System.out.println(-1);
			}
			return;
		}


		int[] p = new int[3];
		for(int i=0;i<3;i++) {
			p[i] = i;
		}

		long ans = INF;
		do {
			if (p[0] != 1 && p[2] != 1) {
				continue;
			}
			long count = 0;
			long x = h[p[0]];
			for(int i=1;i<3;i++) {
				if (x == 0) {
					count = INF;
					break;
				}
				if (h[p[i]] >= x) {
					long magic = (h[p[i]] - x) / d + 1;
					count += magic;
					x = Math.max(0, h[p[i]] - magic * d);
				}else{
					x = h[p[i]];
				}
			}
//			System.out.println(Arrays.toString(p) + ":" + count);
			ans = Math.min(ans,count);
		} while(nextPermutation(p));

		if (ans >= INF) {
			System.out.println(-1);
		}else{
			System.out.println(ans);
		}
	}

	static boolean nextPermutation(int[] p) {
		for(int a=p.length-2;a>=0;--a) {
			if(p[a]<p[a+1]) {
				for(int b=p.length-1;;--b) {
					if(p[b]>p[a]) {
						int t = p[a];
						p[a] = p[b];
						p[b] = t;
						for(++a, b=p.length-1;a<b;++a,--b) {
							t = p[a];
							p[a] = p[b];
							p[b] = t;
						}
						return true;
					}
				}
			}
		}
		return false;
	}

}
0