結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー 37zigen37zigen
提出日時 2016-07-16 13:53:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 3,769 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 80,400 KB
実行使用メモリ 51,864 KB
最終ジャッジ日時 2024-04-23 13:43:47
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,788 KB
testcase_01 AC 57 ms
50,172 KB
testcase_02 AC 55 ms
50,212 KB
testcase_03 AC 54 ms
49,728 KB
testcase_04 AC 54 ms
50,188 KB
testcase_05 AC 55 ms
49,832 KB
testcase_06 AC 55 ms
49,724 KB
testcase_07 AC 53 ms
49,860 KB
testcase_08 AC 89 ms
51,264 KB
testcase_09 AC 56 ms
50,340 KB
testcase_10 AC 66 ms
50,688 KB
testcase_11 AC 55 ms
50,128 KB
testcase_12 AC 57 ms
50,292 KB
testcase_13 AC 56 ms
49,732 KB
testcase_14 AC 54 ms
49,816 KB
testcase_15 AC 57 ms
49,696 KB
testcase_16 AC 60 ms
50,304 KB
testcase_17 AC 63 ms
49,960 KB
testcase_18 AC 58 ms
50,032 KB
testcase_19 AC 57 ms
50,100 KB
testcase_20 AC 58 ms
51,012 KB
testcase_21 AC 58 ms
49,772 KB
testcase_22 AC 87 ms
51,200 KB
testcase_23 AC 91 ms
51,864 KB
testcase_24 AC 88 ms
50,852 KB
testcase_25 AC 91 ms
51,272 KB
testcase_26 AC 89 ms
51,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;

public class Main {

	static void solver() {
		int INF = Integer.MAX_VALUE / 4;
		int gx = ni();
		int gy = ni();
		int n = ni();
		int f = ni();
		int[] x = new int[n];
		int[] y = new int[n];
		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = ni();
			y[i] = ni();
			c[i] = ni();
		}
		int[][] map = new int[101][101];
		for (int i = 0; i <= 100; i++) {
			for (int j = 0; j <= 100; j++) {
				map[i][j] = INF;
			}
		}
		map[0][0] = 0;
		long ans = f * (gx + gy);
		for (int i = 0; i < n; i++) {
			if (c[i] < (x[i] + y[i]) * f) {
				for (int sum = gx + gy; sum >= 0; sum--) {
					for (int xx = gx; xx >= 0; xx--) {
						int yy = sum - gx;
						if (yy < 0 || yy > gy)
							continue;
						if (map[xx][yy] != INF) {
							if (xx + x[i] <= gx && yy + y[i] <= gy) {
								map[xx + x[i]][yy + y[i]] = Math.min(map[xx][yy] + c[i], map[xx + x[i]][yy + y[i]]);
								ans = Math.min(ans, f * (gx + gy - xx - yy - x[i] - y[i]) + map[xx + x[i]][yy + y[i]]);
							}
						}
					}
				}
			} else {
				continue;
			}
		}
		out.println(ans);
	}
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";


	public static void main(String[] args) throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);

		solver();
		out.flush();
	}

	static long nl()
	{
		try {
			long num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc()
	{
		try {
			int b = skip();
			if(b == -1)return 0;
			return (char)b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd()
	{
		try {
			return Double.parseDouble(ns());
		}catch(Exception e) {
		}
		return 0;
	}

	static String ns()
	{
		try{
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if(b == -1)return "";
			sb.append((char)b);
			while(true){
				b = is.read();
				if(b == -1)return sb.toString();
				if(b <= ' ')return sb.toString();
				sb.append((char)b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n)
	{
		char[] buf = new char[n];
		try{
			int b = skip(), p = 0;
			if(b == -1)return null;
			buf[p++] = (char)b;
			while(p < n){
				b = is.read();
				if(b == -1 || b <= ' ')break;
				buf[p++] = (char)b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n)
	{
		byte[] buf = new byte[n];
		try{
			int b = skip();
			if(b == -1)return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException
	{
		int b;
		while((b = is.read()) != -1 && !(b >= 33 && b <= 126));
		return b;
	}

	static boolean eof()
	{
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni()
	{
		try {
			int num = 0;
			boolean minus = false;
			while((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'));
			if(num == '-'){
				num = 0;
				minus = true;
			}else{
				num -= '0';
			}

			while(true){
				int b = is.read();
				if(b >= '0' && b <= '9'){
					num = num * 10 + (b - '0');
				}else{
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}
}
0