結果
問題 | No.1247 ブロック登り |
ユーザー | chocorusk |
提出日時 | 2020-10-04 00:26:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 464 ms / 3,000 ms |
コード長 | 2,679 bytes |
コンパイル時間 | 1,519 ms |
コンパイル使用メモリ | 138,896 KB |
実行使用メモリ | 443,028 KB |
最終ジャッジ日時 | 2024-07-18 10:07:13 |
合計ジャッジ時間 | 7,910 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
18,016 KB |
testcase_01 | AC | 4 ms
15,948 KB |
testcase_02 | AC | 6 ms
26,100 KB |
testcase_03 | AC | 4 ms
13,644 KB |
testcase_04 | AC | 10 ms
50,828 KB |
testcase_05 | AC | 9 ms
40,468 KB |
testcase_06 | AC | 4 ms
17,868 KB |
testcase_07 | AC | 20 ms
62,936 KB |
testcase_08 | AC | 21 ms
64,464 KB |
testcase_09 | AC | 15 ms
57,896 KB |
testcase_10 | AC | 16 ms
60,644 KB |
testcase_11 | AC | 464 ms
439,384 KB |
testcase_12 | AC | 392 ms
440,132 KB |
testcase_13 | AC | 406 ms
440,280 KB |
testcase_14 | AC | 417 ms
443,028 KB |
testcase_15 | AC | 407 ms
441,140 KB |
testcase_16 | AC | 400 ms
440,580 KB |
testcase_17 | AC | 400 ms
439,768 KB |
testcase_18 | AC | 385 ms
420,688 KB |
testcase_19 | AC | 261 ms
440,192 KB |
testcase_20 | AC | 233 ms
438,132 KB |
testcase_21 | AC | 210 ms
437,004 KB |
testcase_22 | AC | 18 ms
59,096 KB |
testcase_23 | AC | 16 ms
56,472 KB |
testcase_24 | AC | 3 ms
9,796 KB |
testcase_25 | AC | 414 ms
441,600 KB |
testcase_26 | AC | 406 ms
439,564 KB |
testcase_27 | AC | 404 ms
442,484 KB |
testcase_28 | AC | 403 ms
440,204 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; using ll=long long; typedef pair<int, int> P; ll dp[4][303][303][303]; const ll INF=1e18; template<typename T> void chmax(T &x, T y){ x=max(x, y); } int main() { int n, k; cin>>n>>k; ll a[303]; for(int i=0; i<n; i++){ cin>>a[i]; } for(int i=0; i<n; i++){ for(int j=i; j<n; j++){ for(int l=0; l<=k; l++){ for(int t=0; t<4; t++){ dp[t][i][j][l]=-INF; } } } } vector<P> v; for(int i=0; i<n; i++) for(int j=i; j<n; j++) v.push_back({i, j}); sort(v.begin(), v.end(), [&](P a, P b){ return a.second-a.first<b.second-b.first;}); for(int i=0; i<n; i++){ dp[0][i][i][k]=a[i]*k; dp[1][i][i][k]=a[i]*k; } for(auto p:v){ int l=p.first, r=p.second; for(int i=k; i>=1; i--){ if(l<r && i-(r-l)>=0){ chmax(dp[1][l][r][i-(r-l)], dp[0][l][r][i]); } if(l<r){ chmax(dp[2][l][r][i-1], dp[0][l][r][i]); } if(l-1>=0){ chmax(dp[0][l-1][r][i-1], dp[0][l][r][i]+a[l-1]*(i-1)); } if(l<r){ chmax(dp[0][l][r][i-1], dp[2][l][r][i]); } if(l<r && i-(r-l)>=0){ chmax(dp[0][l][r][i-(r-l)], dp[1][l][r][i]); } if(l<r){ chmax(dp[3][l][r][i-1], dp[1][l][r][i]); } if(r+1<n){ chmax(dp[1][l][r+1][i-1], dp[1][l][r][i]+a[r+1]*(i-1)); } if(l<r){ chmax(dp[1][l][r][i-1], dp[3][l][r][i]); } } } ll ans[303]; fill(ans, ans+n, -INF); for(auto p:v){ int l=p.first, r=p.second; if(l==r) continue; ll mxl[2]={-INF, -INF}, mxr[2]={-INF, -INF}; for(int i=k; i>=0; i--){ chmax(mxl[i&1], dp[0][l][r][i]); chmax(mxr[i&1], dp[1][l][r][i]); if(i<=r-l){ chmax(ans[l+i], mxl[i&1]); chmax(ans[r-i], mxr[i&1]); } } } for(int i=0; i<n; i++){ cout<<ans[i]<<endl; } return 0; }