結果

問題 No.281 門松と魔法(1)
ユーザー uafr_csuafr_cs
提出日時 2015-09-18 23:25:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,362 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-04-24 11:40:55
合計ジャッジ時間 11,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,168 KB
testcase_01 AC 114 ms
41,384 KB
testcase_02 AC 115 ms
41,184 KB
testcase_03 AC 115 ms
41,332 KB
testcase_04 AC 117 ms
41,188 KB
testcase_05 AC 116 ms
41,632 KB
testcase_06 AC 120 ms
41,344 KB
testcase_07 AC 116 ms
41,292 KB
testcase_08 AC 115 ms
41,552 KB
testcase_09 AC 108 ms
40,204 KB
testcase_10 AC 103 ms
40,156 KB
testcase_11 AC 103 ms
40,036 KB
testcase_12 AC 114 ms
41,304 KB
testcase_13 AC 112 ms
41,292 KB
testcase_14 AC 118 ms
41,372 KB
testcase_15 WA -
testcase_16 AC 109 ms
41,172 KB
testcase_17 WA -
testcase_18 AC 102 ms
40,404 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 112 ms
41,184 KB
testcase_23 WA -
testcase_24 AC 109 ms
41,452 KB
testcase_25 AC 108 ms
41,692 KB
testcase_26 AC 112 ms
41,176 KB
testcase_27 AC 140 ms
41,280 KB
testcase_28 AC 102 ms
40,036 KB
testcase_29 AC 100 ms
40,440 KB
testcase_30 AC 113 ms
41,588 KB
testcase_31 AC 119 ms
41,416 KB
testcase_32 AC 114 ms
41,336 KB
testcase_33 AC 113 ms
41,292 KB
testcase_34 WA -
testcase_35 AC 110 ms
41,316 KB
testcase_36 AC 109 ms
41,420 KB
testcase_37 AC 99 ms
40,272 KB
testcase_38 AC 108 ms
41,048 KB
testcase_39 AC 114 ms
41,388 KB
testcase_40 AC 100 ms
40,112 KB
testcase_41 AC 100 ms
40,104 KB
testcase_42 AC 117 ms
41,640 KB
testcase_43 AC 336 ms
41,228 KB
testcase_44 AC 99 ms
40,204 KB
testcase_45 AC 111 ms
41,516 KB
testcase_46 AC 109 ms
41,324 KB
testcase_47 AC 101 ms
40,040 KB
testcase_48 AC 99 ms
40,344 KB
testcase_49 AC 104 ms
40,056 KB
testcase_50 AC 119 ms
41,200 KB
testcase_51 AC 112 ms
41,252 KB
testcase_52 AC 112 ms
41,200 KB
testcase_53 AC 113 ms
41,764 KB
testcase_54 AC 101 ms
39,908 KB
testcase_55 AC 113 ms
41,440 KB
testcase_56 AC 112 ms
40,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static boolean is_valid_kadomatsu(long h1, long h2, long h3){
		if(h1 == h2 || h2 == h3 || h3 == h1){
			return false;
		}
		
		if(h1 < h2 && h2 > h3){
			return true;
		}else if(h1 > h2 && h2 < h3){
			return true;
		}
		
		return false;
	}
	
	public static int answer = 15;
	
	public static void dfs(int count, long d, long h1, long h2, long h3){
		if(answer < count){
			return;
		}
		
		if(h1 < h2 && h2 < h3){
			while(h2 > h3){
				h3 = Math.max(0, h3 - d);
				count++;
			}
		}
		
		if(h1 > h2 && h2 > h3){
			while(h2 > h1){
				h1 = Math.max(0, h1 - d);
				count++;
			}
		}
		
		if(is_valid_kadomatsu(h1, h2, h3)){
			answer = Math.min(answer, count);
			return;
		}
		
		if(h1 != 0){
			dfs(count + 1, d, Math.max(0, h1 - d), h2, h3);
		}
		
		if(h3 != 0){
			dfs(count + 1, d, h1, h2, Math.max(0, h3 - d));
		}
		
		if(h2 != 0){
			dfs(count + 1, d, h1, Math.max(0, h2 - d), h3);
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long d = sc.nextLong();
		final long h1 = sc.nextLong();
		final long h2 = sc.nextLong();
		final long h3 = sc.nextLong();
		
		dfs(0, d, h1, h2, h3);
		System.out.println(answer == 15 ? -1 : answer);
		
	}

}
0