結果

問題 No.2423 Merge Stones
ユーザー shobonvipshobonvip
提出日時 2023-08-12 14:41:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,811 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 224,460 KB
実行使用メモリ 335,104 KB
最終ジャッジ日時 2024-11-19 20:57:26
合計ジャッジ時間 185,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
44,720 KB
testcase_01 AC 8 ms
179,584 KB
testcase_02 AC 6 ms
15,872 KB
testcase_03 AC 6 ms
177,408 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 6 ms
178,176 KB
testcase_06 AC 7 ms
48,800 KB
testcase_07 AC 5 ms
14,464 KB
testcase_08 AC 5 ms
176,256 KB
testcase_09 AC 4 ms
12,288 KB
testcase_10 AC 7 ms
178,432 KB
testcase_11 TLE -
testcase_12 AC 2,038 ms
334,976 KB
testcase_13 AC 2,073 ms
174,336 KB
testcase_14 AC 2,083 ms
179,476 KB
testcase_15 AC 2,109 ms
335,104 KB
testcase_16 AC 2,077 ms
172,928 KB
testcase_17 AC 2,041 ms
335,104 KB
testcase_18 AC 2,083 ms
181,632 KB
testcase_19 AC 1,978 ms
172,800 KB
testcase_20 AC 2,051 ms
182,472 KB
testcase_21 AC 2,109 ms
335,104 KB
testcase_22 AC 2,092 ms
172,928 KB
testcase_23 AC 2,245 ms
334,848 KB
testcase_24 AC 2,302 ms
172,928 KB
testcase_25 AC 2,079 ms
335,104 KB
testcase_26 AC 1,986 ms
172,928 KB
testcase_27 AC 2,026 ms
167,552 KB
testcase_28 AC 2,058 ms
167,552 KB
testcase_29 AC 2,061 ms
167,680 KB
testcase_30 AC 2,045 ms
167,680 KB
testcase_31 AC 2,008 ms
167,680 KB
testcase_32 AC 1,971 ms
167,680 KB
testcase_33 AC 1,895 ms
167,680 KB
testcase_34 AC 1,952 ms
167,552 KB
testcase_35 AC 1,965 ms
167,552 KB
testcase_36 AC 1,977 ms
167,552 KB
testcase_37 AC 2,189 ms
167,552 KB
testcase_38 AC 2,007 ms
167,680 KB
testcase_39 AC 2,067 ms
167,680 KB
testcase_40 AC 2,321 ms
167,680 KB
testcase_41 AC 2,050 ms
167,552 KB
testcase_42 AC 2,070 ms
167,552 KB
testcase_43 AC 2,040 ms
167,680 KB
testcase_44 AC 2,178 ms
167,552 KB
testcase_45 AC 2,057 ms
167,424 KB
testcase_46 AC 2,012 ms
167,680 KB
testcase_47 AC 1,969 ms
167,552 KB
testcase_48 AC 1,986 ms
167,680 KB
testcase_49 AC 1,975 ms
167,424 KB
testcase_50 AC 2,040 ms
167,680 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 2,118 ms
167,552 KB
testcase_57 AC 2,149 ms
167,552 KB
testcase_58 AC 2,157 ms
167,552 KB
testcase_59 AC 2,226 ms
167,552 KB
testcase_60 AC 2,121 ms
167,552 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[52][700][700];

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[i][j][k] = -1e18;
			}
		}
	}

	rep(i,0,2*n){
		dp[c[i]][i][i+1] = 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[k][i][j] < 0) continue;
					rep(l,max(0,k-f),min(50,k+f+1)){
						chmax(dp[k][i][i+len], dp[k][i][j] + dp[l][j][i+len]);
					}
					rep(l,max(0,k-f),min(50,k+f+1)){
						chmax(dp[l][i][i+len], dp[k][i][j] + dp[l][j][i+len]);
					}
				}
			}
		}
	}

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

	cout << ans << '\n';

}

0