結果

問題 No.2423 Merge Stones
ユーザー shobonvipshobonvip
提出日時 2023-08-12 14:43:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,811 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 225,204 KB
実行使用メモリ 304,512 KB
最終ジャッジ日時 2024-11-19 21:05:14
合計ジャッジ時間 168,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 3 ms
10,496 KB
testcase_02 AC 3 ms
12,196 KB
testcase_03 AC 3 ms
10,496 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 3 ms
10,496 KB
testcase_06 AC 3 ms
10,624 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
157,312 KB
testcase_10 AC 3 ms
10,496 KB
testcase_11 TLE -
testcase_12 AC 1,602 ms
157,696 KB
testcase_13 AC 1,637 ms
304,512 KB
testcase_14 AC 1,622 ms
157,568 KB
testcase_15 AC 1,624 ms
304,256 KB
testcase_16 AC 1,652 ms
157,440 KB
testcase_17 AC 1,613 ms
304,256 KB
testcase_18 AC 1,661 ms
157,568 KB
testcase_19 AC 1,591 ms
157,568 KB
testcase_20 AC 1,614 ms
157,568 KB
testcase_21 AC 1,642 ms
157,440 KB
testcase_22 AC 1,604 ms
157,696 KB
testcase_23 AC 1,645 ms
157,440 KB
testcase_24 AC 1,619 ms
157,696 KB
testcase_25 AC 1,645 ms
157,568 KB
testcase_26 AC 1,620 ms
157,568 KB
testcase_27 AC 1,638 ms
304,256 KB
testcase_28 AC 1,625 ms
157,696 KB
testcase_29 AC 1,638 ms
304,512 KB
testcase_30 AC 1,608 ms
157,568 KB
testcase_31 AC 1,614 ms
152,320 KB
testcase_32 AC 1,643 ms
152,320 KB
testcase_33 AC 1,608 ms
152,320 KB
testcase_34 AC 1,623 ms
152,320 KB
testcase_35 AC 1,644 ms
152,320 KB
testcase_36 AC 1,622 ms
152,320 KB
testcase_37 AC 1,635 ms
152,320 KB
testcase_38 AC 1,626 ms
152,320 KB
testcase_39 AC 1,644 ms
152,448 KB
testcase_40 AC 1,630 ms
152,320 KB
testcase_41 AC 1,643 ms
152,320 KB
testcase_42 AC 1,644 ms
152,320 KB
testcase_43 AC 1,727 ms
152,320 KB
testcase_44 AC 1,620 ms
152,320 KB
testcase_45 AC 1,620 ms
152,320 KB
testcase_46 AC 1,623 ms
152,320 KB
testcase_47 AC 1,637 ms
152,320 KB
testcase_48 AC 1,604 ms
152,320 KB
testcase_49 AC 1,626 ms
152,192 KB
testcase_50 AC 1,640 ms
152,320 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,643 ms
152,192 KB
testcase_57 AC 1,651 ms
152,320 KB
testcase_58 AC 1,725 ms
152,192 KB
testcase_59 AC 1,667 ms
152,192 KB
testcase_60 AC 1,659 ms
152,192 KB
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

ll dp[700][700][52];

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n, f; cin >> n >> f;
	vector<ll> a(2*n);
	vector<int> c(2*n);
	rep(i,0,n){
		cin >> a[i];
		a[i+n] = a[i];
	}
	rep(i,0,n){
		cin >> c[i];
		c[i]--;
		c[i+n] = c[i];
	}

	rep(i,0,50){
		rep(j,0,2*n){
			rep(k,0,2*n+1){
				dp[j][k][i] = -1e18;
			}
		}
	}

	rep(i,0,2*n){
		dp[i][i+1][c[i]] = a[i];
	}

	rep(len,2,n+1){
		rep(i,0,2*n+1-len){
			// [i, i+len)
			rep(j,i+1,i+len){
				rep(k,0,50){
					if (dp[i][j][k] < 0) continue;
					rep(l,max(0,k-f),min(50,k+f+1)){
						chmax(dp[i][i+len][k], dp[i][j][k] + dp[j][i+len][l]);
					}
					rep(l,max(0,k-f),min(50,k+f+1)){
						chmax(dp[i][i+len][l], dp[i][j][k] + dp[j][i+len][l]);
					}
				}
			}
		}
	}

	ll ans = -1e18;
	rep(i,0,50){
		rep(j,0,2*n){
			rep(k,0,2*n+1){
				chmax(ans, dp[j][k][i]);
			}
		}
	}

	cout << ans << '\n';

}

0