結果

問題 No.324 落ちてた閉路グラフ
ユーザー beetbeet
提出日時 2018-12-03 19:41:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 977 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 203,636 KB
実行使用メモリ 290,432 KB
最終ジャッジ日時 2024-07-04 10:46:25
合計ジャッジ時間 11,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
290,432 KB
testcase_01 AC 189 ms
290,280 KB
testcase_02 AC 190 ms
290,304 KB
testcase_03 AC 187 ms
290,304 KB
testcase_04 AC 245 ms
290,304 KB
testcase_05 AC 243 ms
290,288 KB
testcase_06 AC 244 ms
290,432 KB
testcase_07 AC 248 ms
290,304 KB
testcase_08 AC 254 ms
290,304 KB
testcase_09 AC 248 ms
290,304 KB
testcase_10 AC 248 ms
290,216 KB
testcase_11 AC 243 ms
290,304 KB
testcase_12 AC 236 ms
290,304 KB
testcase_13 AC 205 ms
290,304 KB
testcase_14 AC 191 ms
290,432 KB
testcase_15 AC 198 ms
290,304 KB
testcase_16 AC 194 ms
290,304 KB
testcase_17 AC 193 ms
290,324 KB
testcase_18 AC 195 ms
290,304 KB
testcase_19 AC 194 ms
290,304 KB
testcase_20 AC 191 ms
290,304 KB
testcase_21 AC 190 ms
290,176 KB
testcase_22 AC 193 ms
290,304 KB
testcase_23 AC 187 ms
290,304 KB
testcase_24 AC 187 ms
290,304 KB
testcase_25 AC 188 ms
290,304 KB
testcase_26 AC 190 ms
290,176 KB
testcase_27 AC 191 ms
290,360 KB
testcase_28 AC 192 ms
290,364 KB
testcase_29 AC 189 ms
290,392 KB
testcase_30 AC 192 ms
290,304 KB
testcase_31 AC 188 ms
290,188 KB
testcase_32 AC 244 ms
290,304 KB
testcase_33 AC 242 ms
290,432 KB
testcase_34 AC 230 ms
290,304 KB
testcase_35 AC 190 ms
290,304 KB
testcase_36 AC 219 ms
290,304 KB
testcase_37 AC 191 ms
290,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
Int dp[2][2][3030][3030];
signed main(){
  Int n,m;
  cin>>n>>m;
  vector<Int> w(n);
  for(Int i=0;i<n;i++) cin>>w[i];

  const Int INF = 1e12;
  for(Int a=0;a<2;a++)
    for(Int b=0;b<2;b++)
      for(Int i=0;i<3030;i++)
        for(Int j=0;j<3030;j++)
          dp[a][b][i][j]=-INF;

  dp[0][0][1][0]=0;
  dp[1][1][1][1]=0;
  
  for(Int i=1;i<n;i++){
    for(Int j=0;j<=n;j++){
      for(Int a=0;a<2;a++){
        for(Int b=0;b<2;b++){
          chmax(dp[a][0][i+1][j],dp[a][b][i][j]);
          chmax(dp[a][1][i+1][j+1],dp[a][b][i][j]+b*w[i]);
        }
      }
    }
  }

  Int ans=dp[0][0][n][m];
  for(Int a=0;a<2;a++)
    for(Int b=0;b<2;b++)
      chmax(ans,dp[a][b][n][m]+(a&&b)*w[0]);  
  cout<<ans<<endl;  
  return 0;
}
0