結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | mkawa2 |
提出日時 | 2020-02-27 11:02:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 1,619 ms |
コンパイル使用メモリ | 169,000 KB |
実行使用メモリ | 73,992 KB |
最終ジャッジ日時 | 2024-10-13 15:48:35 |
合計ジャッジ時間 | 3,057 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 29 ms
69,036 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) using ll = long long; using vll = vector<ll>; using vi = vector<int>; using vvi = vector<vector<int>>; using vvll = vector<vector<ll>>; const int inf = 1e9; const ll md = 1000000007; int dp[3005][3005][2]; int w[3005]; int main() { int n,m; cin>>n>>m; rep(i,n) cin>>w[i]; rep(i,n+1) rep(j,n+1) rep(k,2) dp[i][j][k]=-inf; dp[0][0][1]=0; rep(i,n) rep(j,min(i+1,m+1)) rep(k,1){ int pre=dp[i][j][k]; if (pre==-inf) continue; dp[i+1][j][0]=max(dp[i+1][j][0],pre); if (k) dp[i+1][j+1][1]=max(dp[i+1][j+1][1],pre+w[i]); else dp[i+1][j+1][1]=max(dp[i+1][j+1][1],pre); } int ans=dp[n][m][1]; rep(i,n+1) rep(j,n+1) rep(k,2) dp[i][j][k]=-inf; dp[0][0][0]=0; rep(i,n) rep(j,min(i+1,m+1)) rep(k,1){ int pre=dp[i][j][k]; if (pre==-inf) continue; dp[i+1][j][0]=max(dp[i+1][j][0],pre); if (k) dp[i+1][j+1][1]=max(dp[i+1][j+1][1],pre+w[i]); else dp[i+1][j+1][1]=max(dp[i+1][j+1][1],pre); } ans=max(ans,dp[n][m][0]); cout<<ans<<endl; return 0; }