結果

問題 No.1 道のショートカット
ユーザー takana-sky07takana-sky07
提出日時 2019-06-30 11:34:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,227 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-22 13:30:46
合計ジャッジ時間 12,083 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

#include <iostream>
#include <vector>

using VEC = std::vector<int>;
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 S(V);
	VEC T(V);
	VEC Y(V);
	VEC M(V);
	for (int i = 0; i < V; i++) {
		std::cin >> S[i];
	}
	for (int i = 0; i < V; i++) {
		std::cin >> T[i];
	}
	for (int i = 0; i < V; i++) {
		std::cin >> Y[i];
	}
	for (int i = 0; i < V; i++) {
		std::cin >> M[i];
	}
	
	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 == S[k] && k + Y[k] <= C) {
					setMin(dp[T[k] - 1][j + Y[k]], dp[i][j] + M[k]);
				}
			}
			}
		}
	}
	
	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