結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー uafr_csuafr_cs
提出日時 2017-03-24 22:44:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 42,148 KB
最終ジャッジ日時 2024-07-05 22:09:32
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,256 KB
testcase_01 AC 91 ms
39,840 KB
testcase_02 AC 107 ms
40,888 KB
testcase_03 AC 104 ms
41,004 KB
testcase_04 WA -
testcase_05 AC 105 ms
41,104 KB
testcase_06 AC 95 ms
40,332 KB
testcase_07 AC 102 ms
41,244 KB
testcase_08 AC 147 ms
41,924 KB
testcase_09 AC 145 ms
42,060 KB
testcase_10 AC 113 ms
41,172 KB
testcase_11 AC 112 ms
41,508 KB
testcase_12 AC 112 ms
41,340 KB
testcase_13 AC 112 ms
41,092 KB
testcase_14 AC 110 ms
41,384 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 110 ms
41,268 KB
testcase_19 WA -
testcase_20 AC 112 ms
41,432 KB
testcase_21 AC 98 ms
40,520 KB
testcase_22 WA -
testcase_23 AC 140 ms
41,584 KB
testcase_24 AC 132 ms
41,780 KB
testcase_25 AC 143 ms
41,584 KB
testcase_26 AC 142 ms
41,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int gx = sc.nextInt();
		final int gy = sc.nextInt();
		final int N = sc.nextInt();
		final int F = sc.nextInt();
		
		int[] xs = new int[N];
		int[] ys = new int[N];
		int[] cs = new int[N];
		for(int i = 0; i < N; i++){
			final int x = sc.nextInt();
			final int y = sc.nextInt();
			final int c = sc.nextInt();
			
			xs[i] = x;
			ys[i] = y;
			cs[i] = c;
		}
		long[][] DP = new long[gy + 1][gx + 1];
		for(int y = 0; y <= gy; y++){
			for(int x = 0; x <= gx; x++){
				DP[y][x] = Integer.MAX_VALUE;
			}
		}
		DP[0][0] = 0;
		
		for(int index = 0; index < N; index++){
			for(int y = 0; y <= gy; y++){
				final int ny = y + ys[index];
				if(ny > gy){ break; }
				
				for(int x = 0; x <= gx; x++){
					final int nx = x + xs[index];
					if(nx > gx){ break; }
					
					DP[ny][nx] = Math.min(DP[ny][nx], DP[y][x] + cs[index]);
				}
			}
		}
		
		for(int y = 0; y <= gy; y++){
			for(int x = 0; x <= gx; x++){
				if(x != gx){ DP[y][x + 1] = Math.min(DP[y][x + 1], DP[y][x] + F); }
				if(y != gy){ DP[y + 1][x] = Math.min(DP[y + 1][x], DP[y][x] + F); }
			}
		}
		
		/*
		for(int y = 0; y <= gy; y++){
			for(int x = 0; x <= gx; x++){
				System.out.print(DP[y][x] + " ");
			}
			System.out.println();
		}
		//*/
		
		System.out.println(DP[gy][gx]);
	}
}
0