結果
問題 | No.783 門松計画 |
ユーザー | leaf_1415 |
提出日時 | 2019-01-11 22:04:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 898 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 54,644 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 13:47:31 |
合計ジャッジ時間 | 3,505 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | AC | 23 ms
5,376 KB |
testcase_12 | AC | 11 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
#include <iostream> using namespace std; int n, c; int l[55], w[55]; int memo[55][55][55]; int calc(int x, int pp, int p) { if(memo[x][pp][p] != -1) return memo[x][pp][p]; int ret = 0; for(int i = 1; i <= n; i++){ if(pp < p && l[i] > p) continue; if(pp > p && l[i] < p) continue; if(l[i] == p || l[i] == pp) continue; if(x+w[i] > c) continue; ret = max(ret, calc(x+w[i], p, l[i]) + l[i]); } return memo[x][pp][p] = ret; } int main(void) { cin >> n >> c; for(int i = 1; i <= n; i++) cin >> l[i]; for(int i = 1; i <= n; i++) cin >> w[i]; for(int i = 0; i < 55; i++){ for(int j = 0; j < 55; j++){ for(int k = 0; k < 55; k++){ memo[i][j][k] = -1; } } } int ans = 0; for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ if(l[i] == l[j]) continue; ans = max(ans, calc(w[i]+w[j], l[i],l[j]) + l[i]+l[j]); } } cout << ans << endl; return 0; }