結果

問題 No.783 門松計画
ユーザー kwm_tkwm_t
提出日時 2023-04-08 14:51:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,336 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 203,148 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-10-03 09:57:49
合計ジャッジ時間 5,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,040 KB
testcase_01 AC 35 ms
52,316 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 35 ms
52,180 KB
testcase_05 AC 35 ms
52,148 KB
testcase_06 AC 35 ms
52,180 KB
testcase_07 AC 35 ms
52,080 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 34 ms
52,032 KB
testcase_10 AC 59 ms
52,232 KB
testcase_11 AC 1,336 ms
52,160 KB
testcase_12 AC 79 ms
52,224 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 60 ms
52,224 KB
testcase_15 AC 55 ms
52,224 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 52 ms
52,224 KB
testcase_20 AC 36 ms
52,224 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 44 ms
52,224 KB
testcase_23 AC 36 ms
52,224 KB
testcase_24 AC 56 ms
52,224 KB
testcase_25 AC 44 ms
52,224 KB
testcase_26 AC 43 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
long long dp[2501][50][50];//長さ,last2,last1
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, c; cin >> n >> c;
	vector<int>s(n), w(n);
	rep(i, n)cin >> s[i];
	rep(i, n)cin >> w[i];
	rep(i, 2501)rep(j, 50)rep(k, 50)dp[i][j][k] = LINF;
	rep(i, n)rep(j, n)rep(k, n) {
		if (s[i] == s[j])continue;
		if (s[i] == s[k])continue;
		if (s[j] == s[k])continue;
		if ((s[i] < s[j]) && (s[j] <= s[k]))continue;
		if ((s[i] > s[j]) && (s[j] >= s[k]))continue;
		if (w[i] + w[j] + w[k] > c)continue;
		dp[s[i] + s[j] + s[k]][j][k] = w[i] + w[j] + w[k];
	}
	rep(i, 2501)rep(j, n)rep(k, n) {
		if (LINF == dp[i][j][k])continue;
		rep(l, n) {
			if (s[j] == s[l])continue;
			if (s[k] == s[l])continue;
			if ((s[j] < s[k]) && (s[k] <= s[l]))continue;
			if ((s[j] > s[k]) && (s[k] >= s[l]))continue;
			int ni = i + s[l];
			long long nv = dp[i][j][k] + w[l];
			if (nv > c)continue;
			chmin(dp[ni][k][l], nv);
		}
	}
	int ans = 0;
	rrep(i, 2501) {
		rep(j, n)rep(k, n) {
			if (LINF == dp[i][j][k])continue;
			chmax(ans, i);
		}
	}
	cout << ans << endl;
	return 0;
}
0