結果

問題 No.1 道のショートカット
ユーザー takana-sky07takana-sky07
提出日時 2019-05-31 23:24:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,244 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-22 13:29:47
合計ジャッジ時間 2,443 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,380 KB
testcase_16 WA -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 RE -
testcase_43 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
* 001_sample.cpp
* 
* No.1 ̃V[gJbg
*/

#include <iostream>
#include <vector>

struct e_t {
	int S, T, Y, M;
};
using VEC = std::vector<e_t>;
static const int INF = 1e9+7;

template <class A>
bool setMin(A& left, A const & right) {
	if (left < right) {
		return false;
	}
	left = right;
	return true;
}

int main () {
	int N = 0;
	int C = 0;
	int V = 0;
	std::cin >> N >> C >> V;
	VEC e(V);
	for (int i = 0; i < N; i++) {
		std::cin >> e[i].S;
	}
	for (int i = 0; i < N; i++) {
		std::cin >> e[i].T;
	}
	for (int i = 0; i < N; i++) {
		std::cin >> e[i].Y;
	}
	for (int i = 0; i < N; i++) {
		std::cin >> e[i].M;
	}
	
	//int64_t dp[N][C+1];
	int dp[N][C+1];
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < C+1; j++) {
			dp[i][j] = INF;
		}
	}
	dp[0][0] = 0;
	
	for (int i = 0; i < N; i++) {
		for (int j = C; j >= 0; j--) {
			if (dp[i][j] != INF) {
			for (int k = 0; k < V; k++) {
				if (i+1 == e[k].S && e[k].Y <= C) {
					setMin(dp[e[k].T - 1][j + e[k].Y], dp[i][j] + e[k].M);
				}
			}
			}
		}
	}
	int ans = INF;
	for (int i = 0; i < C+1; i++) {
		setMin(ans, dp[N-1][i]);
	}
	std::cout << (ans == INF ? -1 : ans) << std::endl;
	
	return 0;
	
}
0