結果

問題 No.1247 ブロック登り
ユーザー kmjpkmjp
提出日時 2020-10-03 00:07:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 633 ms / 3,000 ms
コード長 1,705 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 205,216 KB
実行使用メモリ 220,164 KB
最終ジャッジ日時 2024-07-18 00:42:24
合計ジャッジ時間 11,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
219,960 KB
testcase_01 AC 58 ms
220,068 KB
testcase_02 AC 57 ms
219,932 KB
testcase_03 AC 58 ms
220,096 KB
testcase_04 AC 59 ms
220,152 KB
testcase_05 AC 57 ms
220,124 KB
testcase_06 AC 57 ms
220,140 KB
testcase_07 AC 59 ms
219,952 KB
testcase_08 AC 60 ms
220,064 KB
testcase_09 AC 58 ms
219,940 KB
testcase_10 AC 58 ms
220,048 KB
testcase_11 AC 615 ms
220,164 KB
testcase_12 AC 578 ms
219,936 KB
testcase_13 AC 600 ms
219,964 KB
testcase_14 AC 606 ms
220,140 KB
testcase_15 AC 595 ms
219,920 KB
testcase_16 AC 604 ms
220,124 KB
testcase_17 AC 622 ms
220,048 KB
testcase_18 AC 544 ms
219,984 KB
testcase_19 AC 129 ms
220,112 KB
testcase_20 AC 84 ms
220,068 KB
testcase_21 AC 60 ms
219,952 KB
testcase_22 AC 61 ms
220,112 KB
testcase_23 AC 60 ms
220,136 KB
testcase_24 AC 58 ms
220,116 KB
testcase_25 AC 581 ms
220,064 KB
testcase_26 AC 590 ms
220,104 KB
testcase_27 AC 598 ms
220,016 KB
testcase_28 AC 633 ms
220,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,K,A[303];
ll dp[303][303][303];
ll ret[303];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) {
		cin>>A[i];
		ret[i]=-1LL<<60;
	}
	FOR(x,302) FOR(y,302) FOR(i,302) dp[x][y][i]=-1LL<<60;
	
	FOR(x,N-1) {
		dp[x][x+1][K-1]=A[x]*(K-1)+A[x+1]*K;
		dp[x+1][x][K-1]=A[x+1]*(K-1)+A[x]*K;
	}
	
	for(i=K-1;i>=0;i--) {
		for(x=0;x<N;x++) for(y=x+1;y<N;y++) {
			// stay
			if(i>=2) {
				dp[x][y][i-2]=max(dp[x][y][i-2],dp[x][y][i]);
				dp[y][x][i-2]=max(dp[y][x][i-2],dp[y][x][i]);
			}
			//left
			if(x&&i) dp[x-1][y][i-1]=max(dp[x-1][y][i-1],dp[x][y][i]+A[x-1]*(i-1));
			//right
			if(y+1<N&&i) dp[y+1][x][i-1]=max(dp[y+1][x][i-1],dp[y][x][i]+A[y+1]*(i-1));
			
			// go to the other side
			if(i>=y-x) {
				dp[x][y][i-(y-x)]=max(dp[x][y][i-(y-x)],dp[y][x][i]);
				dp[y][x][i-(y-x)]=max(dp[y][x][i-(y-x)],dp[x][y][i]);
			}
			else {
				ret[y-i]=max(ret[y-i],dp[y][x][i]);
				ret[x+i]=max(ret[x+i],dp[x][y][i]);
			}
			
		}
	}
	FOR(i,N) cout<<ret[i]<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0