結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー eiya5498513eiya5498513
提出日時 2017-03-25 00:17:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 96,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 03:12:06
合計ジャッジ時間 1,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if 1
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <queue>
#include <stack>
#include <array>
#include <deque>
#include <algorithm>
#include <utility>
#include <cstdint>
#include <functional>
#include <iomanip>
#include <numeric>

#define in std::cin
#define out std::cout

template<typename T>
void fill_all(T& arr, const T& v) {
	arr = v;
}
template<typename T, typename ARR>
void fill_all(ARR& arr, const T& v) {
	for (auto& i : arr) { fill_all(i, v); }
}

int Gx, Gy;
int32_t N,F;
int X[100];
int Y[100];
int C[100];
constexpr int INF = 1000000000;
int32_t DP[101][101][51];
int32_t func(int x, int y, int i)
{
	if (x > Gx || y > Gy) { return INF; }
	if (i == N) {
		return F*(Gx - x + Gy - y);
	}
	if (DP[x][y][i] != -1) {
		return DP[x][y][i];
	}
	return DP[x][y][i] =
		std::min(
			func(x+X[i],y + Y[i],i+1) + C[i],
			func(x, y, i + 1)
		)
		;
}

int main()
{
	using std::endl;
	in.sync_with_stdio(false);
	out.sync_with_stdio(false);
	fill_all(DP, -1);
	in >> Gx>>Gy>>N>>F;
	for (size_t i = 0; i < N; i++)
	{
		in >> X[i] >> Y[i] >> C[i];
	}

	out << func(0, 0, 0) << endl;

	return 0;
}
#endif
0