結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 23:27:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 3,955 ms
コンパイル使用メモリ 80,008 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-07-08 00:19:23
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,360 KB
testcase_01 AC 101 ms
40,232 KB
testcase_02 AC 104 ms
40,240 KB
testcase_03 AC 101 ms
39,692 KB
testcase_04 AC 104 ms
40,148 KB
testcase_05 AC 119 ms
41,396 KB
testcase_06 AC 119 ms
41,088 KB
testcase_07 AC 115 ms
41,276 KB
testcase_08 AC 172 ms
41,628 KB
testcase_09 AC 128 ms
41,684 KB
testcase_10 AC 126 ms
41,412 KB
testcase_11 AC 125 ms
40,844 KB
testcase_12 AC 131 ms
41,656 KB
testcase_13 AC 127 ms
41,332 KB
testcase_14 AC 116 ms
41,392 KB
testcase_15 AC 119 ms
41,236 KB
testcase_16 AC 122 ms
41,500 KB
testcase_17 AC 138 ms
41,504 KB
testcase_18 AC 130 ms
41,236 KB
testcase_19 AC 138 ms
41,356 KB
testcase_20 AC 126 ms
41,344 KB
testcase_21 AC 121 ms
41,052 KB
testcase_22 AC 142 ms
41,828 KB
testcase_23 AC 149 ms
41,812 KB
testcase_24 AC 148 ms
41,620 KB
testcase_25 AC 150 ms
41,408 KB
testcase_26 AC 149 ms
41,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class WarpCrystal {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int Gx = s.nextInt() , Gy = s.nextInt() , N = s.nextInt() , F = s.nextInt();
		ArrayList<Integer> cx = new ArrayList<>();
		ArrayList<Integer> cy = new ArrayList<>();
		ArrayList<Integer> cc = new ArrayList<>();
		for(int i = 0;i < N;i++){
			int x = s.nextInt(),y = s.nextInt(),c = s.nextInt();
			if(c < (x+y)*F){
				cx.add(x);
				cy.add(y);
				cc.add(c);
			}
		}
		s.close();
		int[][] mas = new int[Gx+1][Gy+1];
		for(int i =0;i <= Gx;i++){
			for(int j = 0;j <= Gy;j++){
				mas[i][j] = (i + j) * F;
			}
		}
		for(int i = 0;i < cx.size();i++){
			for(int j = Gx;j >= 0;j--){
				for(int k = Gy;k >= 0;k--){
					if(j - cx.get(i) >= 0 && k -cy.get(i) >= 0){
						mas[j][k] = Math.min(mas[j][k], mas[j-cx.get(i)][k-cy.get(i)]+cc.get(i));
					}
				}
			}
		}
		System.out.println(mas[Gx][Gy]);
	} 
}
0