結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー uafr_csuafr_cs
提出日時 2017-03-24 22:40:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,372 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-07-05 22:02:38
合計ジャッジ時間 6,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,832 KB
testcase_01 AC 122 ms
41,128 KB
testcase_02 AC 122 ms
40,916 KB
testcase_03 AC 112 ms
39,828 KB
testcase_04 WA -
testcase_05 AC 123 ms
40,944 KB
testcase_06 AC 124 ms
41,372 KB
testcase_07 AC 107 ms
40,300 KB
testcase_08 AC 160 ms
41,584 KB
testcase_09 AC 155 ms
41,764 KB
testcase_10 AC 139 ms
41,364 KB
testcase_11 AC 136 ms
41,520 KB
testcase_12 AC 140 ms
41,064 KB
testcase_13 AC 133 ms
41,568 KB
testcase_14 AC 134 ms
41,380 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 135 ms
41,200 KB
testcase_19 WA -
testcase_20 AC 126 ms
41,516 KB
testcase_21 AC 128 ms
41,400 KB
testcase_22 WA -
testcase_23 AC 150 ms
41,472 KB
testcase_24 AC 152 ms
41,584 KB
testcase_25 AC 153 ms
41,504 KB
testcase_26 AC 142 ms
40,904 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] = (x + y) * F;
			}
		}
		/*
		for(int y = 0; y <= gy; y++){
			for(int x = 0; x <= gy; x++){
				System.out.print(DP[y][x]);
			}
			System.out.println();
		}
		//*/
		
		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++){
				System.out.print(DP[y][x] + " ");
			}
			System.out.println();
		}
		//*/
		
		System.out.println(DP[gy][gx]);
	}
}
0