結果

問題 No.783 門松計画
ユーザー kwm_tkwm_t
提出日時 2023-04-08 14:44:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,779 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 198,720 KB
実行使用メモリ 59,384 KB
最終ジャッジ日時 2024-04-14 12:14:42
合計ジャッジ時間 6,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
59,384 KB
testcase_01 AC 18 ms
52,276 KB
testcase_02 AC 19 ms
52,396 KB
testcase_03 AC 17 ms
52,188 KB
testcase_04 AC 17 ms
52,328 KB
testcase_05 AC 18 ms
52,460 KB
testcase_06 AC 17 ms
52,268 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 17 ms
52,412 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:29:53: warning: iteration 50 invokes undefined behavior [-Waggressive-loop-optimizations]
   29 |         rep(i, 2501)rep(j, 51)rep(k, 51)dp[i][j][k] = LINF;
      |                                         ~~~~~~~~~~~~^~~~~~
main.cpp:11:37: note: within this loop
   11 | #define rep(i, n) for (int i = 0; i < (n); ++i)
      |                                     ^
main.cpp:29:31: note: in expansion of macro 'rep'
   29 |         rep(i, 2501)rep(j, 51)rep(k, 51)dp[i][j][k] = LINF;
      |                               ^~~

ソースコード

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, 51)rep(k, 51)dp[i][j][k] = LINF;
	rep(i, n)rep(j, n) {
		if (s[i] == s[j])continue;
		dp[s[i] + s[j]][i][j] = w[i] + w[j];
	}
	while (true) {
		bool update = false;
		rrep(i, 2501)rep(j, n)rep(k, n) {
			if (LINF == dp[i][j][k])continue;
			rep(l, n) {
				if (j == l)continue;
				if (k == 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;
				if (chmin(dp[ni][k][l], nv))update = true;
			}
		}
		if (!update)break;
	}
	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