結果

問題 No.281 門松と魔法(1)
ユーザー ぴろずぴろず
提出日時 2015-09-18 22:43:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,515 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 57,236 KB
最終ジャッジ日時 2024-11-06 18:42:49
合計ジャッジ時間 13,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 137 ms
41,376 KB
testcase_32 AC 135 ms
41,524 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 133 ms
41,572 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 135 ms
41,432 KB
testcase_47 WA -
testcase_48 AC 137 ms
41,280 KB
testcase_49 AC 136 ms
41,448 KB
testcase_50 AC 137 ms
41,436 KB
testcase_51 WA -
testcase_52 AC 121 ms
40,288 KB
testcase_53 AC 134 ms
41,312 KB
testcase_54 AC 137 ms
41,448 KB
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no280;

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

public class Main {

	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 = 1L << 60L;
		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 = 1 << 29;
					break;
				}
				if (h[p[i]] >= x) {
					long magic = (h[p[i]] - x) / d + 1;
					count += magic;
					x = 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 >= 1 << 29) {
			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