結果

問題 No.783 門松計画
ユーザー treeonetreeone
提出日時 2019-01-12 00:43:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,690 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 205,064 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 12:18:44
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define repr(i, a, b) for(int i = a; i >= b; i--)
#define int long long
#define all(a) a.begin(), a.end()
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e18;

int dp[52][52][52], nxt[52][52][52];

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, c;
    cin >> n >> c;
    vector<int> l(n), w(n);
    rep(i, 0, n) cin >> l[i];
    rep(i, 0, n) cin >> w[i];
    rep(i, 0, 52) rep(j, 0, 52) rep(k, 0, 52) dp[i][j][k] = -1;
    dp[0][0][0] = 0;
    int ans = 0;
    rep(i, 0, c){
        rep(j, 0, 52) rep(k, 0, 52) rep(m, 0, 52) nxt[j][k][m] = -1;
        rep(j, 0, c){
            rep(k, 0, 52){
                rep(m, 0, 52){
                    if(dp[j][k][m] == -1) continue;
                    rep(p, 0, n){
                        if(max({k, m, l[p]}) == m || min({k, m, l[p]}) == m || i < 2){
                            if((k != m && m != l[p] && k != l[p]) || i < 2){
                                if(j + w[p] <= c){
                                    nxt[j + w[p]][m][l[p]] = max(nxt[j + w[p]][m][l[p]], dp[j][k][m] + l[p]);
                                }
                            }
                        }
                    }
                }
            }
        }
        swap(dp, nxt);
        if(i >= 2){
            rep(j, 0, c + 1){
                rep(k, 1, 52){
                    rep(m, 1, 52){
                        ans = max(ans, dp[j][k][m]);
                    }
                }
            }
        }
    }
    cout << ans << endl;
}
0