結果
問題 | No.1247 ブロック登り |
ユーザー | 沙耶花 |
提出日時 | 2020-10-02 23:39:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,672 ms / 3,000 ms |
コード長 | 1,121 bytes |
コンパイル時間 | 2,437 ms |
コンパイル使用メモリ | 211,388 KB |
実行使用メモリ | 227,072 KB |
最終ジャッジ日時 | 2024-07-18 00:18:53 |
合計ジャッジ時間 | 26,741 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 201 ms
227,072 KB |
testcase_01 | AC | 203 ms
226,944 KB |
testcase_02 | AC | 201 ms
226,944 KB |
testcase_03 | AC | 205 ms
226,944 KB |
testcase_04 | AC | 203 ms
226,944 KB |
testcase_05 | AC | 203 ms
227,072 KB |
testcase_06 | AC | 206 ms
226,944 KB |
testcase_07 | AC | 210 ms
226,944 KB |
testcase_08 | AC | 212 ms
226,944 KB |
testcase_09 | AC | 204 ms
226,944 KB |
testcase_10 | AC | 206 ms
227,072 KB |
testcase_11 | AC | 1,598 ms
227,072 KB |
testcase_12 | AC | 1,582 ms
226,944 KB |
testcase_13 | AC | 1,617 ms
227,072 KB |
testcase_14 | AC | 1,568 ms
226,944 KB |
testcase_15 | AC | 1,576 ms
226,944 KB |
testcase_16 | AC | 1,668 ms
226,944 KB |
testcase_17 | AC | 1,661 ms
227,072 KB |
testcase_18 | AC | 1,530 ms
226,944 KB |
testcase_19 | AC | 376 ms
226,944 KB |
testcase_20 | AC | 272 ms
226,944 KB |
testcase_21 | AC | 225 ms
226,944 KB |
testcase_22 | AC | 219 ms
226,944 KB |
testcase_23 | AC | 214 ms
226,944 KB |
testcase_24 | AC | 204 ms
227,072 KB |
testcase_25 | AC | 1,672 ms
226,944 KB |
testcase_26 | AC | 1,646 ms
226,944 KB |
testcase_27 | AC | 1,612 ms
226,944 KB |
testcase_28 | AC | 1,591 ms
226,944 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000300 int N,K; vector<int> A; int get(int l,int r,int isL,int now){ if(l<0||r>=N)return -Inf; if(now>K)return -Inf; static vector dp(301,vector(301,vector(2,vector(301,-Inf)))); if(dp[l][r][isL][now]!=-Inf)return dp[l][r][isL][now]; int ret = -Inf+1; if(l==r){ if(now==K)ret = now * A[l]; else ret = -Inf; } else{ if(isL){ ret = max(ret,get(l+1,r,isL,now+1) + A[l] * now); } else{ ret = max(ret,get(l,r-1,isL,now+1) + A[r]*now); } ret = max(ret,get(l,r,isL,now+2)); ret = max(ret,get(l,r,isL^1,now+(r-l))); } dp[l][r][isL][now] = ret; return ret; } int main(){ cin>>N>>K; A.resize(N); rep(i,N)cin>>A[i]; vector<int> ans(N,-Inf); for(int i=0;i<N;i++){ for(int j=i;j<N;j++){ for(int k=0;k<=K;k++){ int t = get(i,j,0,k); if(j-k>=i)ans[j-k] = max(ans[j-k],t); t = get(i,j,1,k); if(i+k<=j)ans[i+k] = max(ans[i+k],t); } } } //cout<<get(2,4,0,0)<<endl; rep(i,N){ cout<<ans[i]<<endl; } return 0; }