結果

問題 No.1247 ブロック登り
ユーザー snow39snow39
提出日時 2020-10-03 00:06:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,902 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 98,360 KB
実行使用メモリ 431,436 KB
最終ジャッジ日時 2024-07-18 00:40:58
合計ジャッジ時間 8,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,684 KB
testcase_01 AC 3 ms
9,572 KB
testcase_02 AC 4 ms
13,688 KB
testcase_03 WA -
testcase_04 AC 5 ms
15,896 KB
testcase_05 AC 5 ms
18,108 KB
testcase_06 WA -
testcase_07 AC 18 ms
66,792 KB
testcase_08 AC 19 ms
66,916 KB
testcase_09 AC 15 ms
65,124 KB
testcase_10 AC 13 ms
52,912 KB
testcase_11 AC 682 ms
431,104 KB
testcase_12 AC 592 ms
411,172 KB
testcase_13 AC 585 ms
431,076 KB
testcase_14 AC 526 ms
431,356 KB
testcase_15 AC 545 ms
431,284 KB
testcase_16 AC 537 ms
431,248 KB
testcase_17 AC 536 ms
431,436 KB
testcase_18 AC 461 ms
403,344 KB
testcase_19 AC 43 ms
68,384 KB
testcase_20 AC 16 ms
28,656 KB
testcase_21 WA -
testcase_22 AC 58 ms
114,572 KB
testcase_23 AC 52 ms
108,020 KB
testcase_24 AC 18 ms
71,004 KB
testcase_25 AC 535 ms
431,200 KB
testcase_26 AC 524 ms
431,116 KB
testcase_27 AC 527 ms
431,296 KB
testcase_28 AC 528 ms
431,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

const ll INF=1e18;
ll dp[303][303][303][2];

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N,K;
  cin>>N>>K;
  vector<ll> A(N);
  rep(i,N) cin>>A[i];
  
  //vector<vector<vector<ll>>> dp(N,vector<vector<ll>> (N,vector<ll> (2,-INF)));
  rep(i,K) rep(j,N) rep(k,N) rep(m,2) dp[i][j][k][m]=-INF;
  rep(i,N){
    dp[K-1][i][i][0]=A[i]*K;
    dp[K-1][i][i][1]=A[i]*K;
  }

  for(int i=K-1;i>=1;i--){
    for(int j=0;j<N;j++) for(int k=j;k<N;k++) for(int m=0;m<2;m++){
      if(dp[i][j][k][m]==-INF) continue;

      ll val=dp[i][j][k][m];
      if(m==0){
        if(j-1>=0) chmax(dp[i-1][j-1][k][0],val+i*A[j-1]);
        if(i-(k-j)>=0)chmax(dp[i-(k-j)][j][k][1],val);
        if(i-2>=0&&j<k) chmax(dp[i-2][j][k][m],val);
      }else{
        if(k+1<N) chmax(dp[i-1][j][k+1][1],val+i*A[k+1]);
        if(i-(k-j)>=0)chmax(dp[i-(k-j)][j][k][0],val);
        if(i-2>=0&&j<k) chmax(dp[i-2][j][k][m],val);
      }
    }
  }

  vector<ll> ans(N,-INF);
  for(int i=0;i<=K-2;i++) for(int j=0;j<N;j++) for(int k=j;k<N;k++) for(int m=0;m<2;m++){
    ll val=dp[i][j][k][m];
    if(val==-INF) continue;
    
    if(m==1){
      if(k-i>=j){
        if(k-i+1<N) chmax(ans[k-i+1],val);
        if(k-i-1>=0) chmax(ans[k-i-1],val);
      }
    }else{
      if(j+i<=k){
        if(j+i+1<N) chmax(ans[j+i+1],val);
        if(j+i-1>=0) chmax(ans[j+i-1],val);
      }
    }
  }

  rep(i,N) cout<<ans[i]<<"\n";

  return 0;
}
0