結果
問題 | No.783 門松計画 |
ユーザー | 37zigen |
提出日時 | 2019-01-12 00:27:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,075 bytes |
コンパイル時間 | 1,406 ms |
コンパイル使用メモリ | 169,140 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 06:10:04 |
合計ジャッジ時間 | 2,451 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 25 ms
6,940 KB |
testcase_11 | AC | 27 ms
6,944 KB |
testcase_12 | AC | 28 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 10 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 4 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 10 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 9 ms
6,944 KB |
testcase_25 | AC | 3 ms
6,940 KB |
testcase_26 | AC | 4 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> bool f(int a,int b,int c){ return a!=b&&b!=c&&c!=a&&((b<a&&b<c)||(b>a&&b>c)); } int dp[51][50][50];//i円使用。2つ前長さj。1つ前長さi。 int main(){ int N; int C; int L[50]; int W[50]; std::cin>>N>>C; for(int i=0;i<N;++i){ std::cin>>L[i]; } for(int i=0;i<N;++i){ std::cin>>W[i]; } for(int i=0;i<N;++i){ for(int j=0;j<N;++j){ for(int k=0;k<N;++k){ if(!f(L[i],L[j],L[k]))continue; if(W[i]+W[j]+W[k]>C)continue; dp[W[i]+W[j]+W[k]][j][k]=std::max(dp[W[i]+W[j]+W[k]][j][k],L[i]+L[j]+L[k]); } } } int ans=0; for(int c=0;c<=C;++c){ for(int i=0;i<N;++i){ for(int j=0;j<N;++j){ for(int k=0;k<N;++k){ if(!f(L[i],L[j],L[k]))continue; if(c+W[k]>C)continue; dp[c+W[k]][j][k]=std::max(dp[c+W[k]][j][k],dp[c][i][j]+L[k]); ans=std::max(ans,dp[c+W[k]][j][k]); } } } } for(int c=0;c<=C;++c){ for(int i=0;i<N;++i){ for(int j=0;j<N;++j){ ans=std::max(ans,dp[c][i][j]); } } } std::cout<<ans<<std::endl; return 0; }