結果

問題 No.2423 Merge Stones
ユーザー shobonvipshobonvip
提出日時 2023-08-12 15:13:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,896 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 225,004 KB
実行使用メモリ 335,104 KB
最終ジャッジ日時 2024-11-20 00:32:42
合計ジャッジ時間 153,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,136 KB
testcase_01 AC 8 ms
17,408 KB
testcase_02 AC 6 ms
15,872 KB
testcase_03 AC 5 ms
177,152 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 6 ms
178,048 KB
testcase_06 AC 7 ms
16,896 KB
testcase_07 AC 5 ms
176,640 KB
testcase_08 AC 5 ms
14,080 KB
testcase_09 AC 4 ms
12,544 KB
testcase_10 AC 7 ms
16,384 KB
testcase_11 TLE -
testcase_12 AC 1,365 ms
172,800 KB
testcase_13 AC 1,372 ms
334,976 KB
testcase_14 AC 1,352 ms
172,928 KB
testcase_15 AC 1,369 ms
335,104 KB
testcase_16 AC 1,348 ms
172,672 KB
testcase_17 AC 1,350 ms
173,184 KB
testcase_18 AC 1,389 ms
172,928 KB
testcase_19 AC 1,365 ms
167,808 KB
testcase_20 AC 1,342 ms
167,680 KB
testcase_21 AC 1,378 ms
167,424 KB
testcase_22 AC 1,344 ms
167,552 KB
testcase_23 AC 1,360 ms
167,424 KB
testcase_24 AC 1,356 ms
167,552 KB
testcase_25 AC 1,346 ms
167,552 KB
testcase_26 AC 1,360 ms
167,680 KB
testcase_27 AC 1,354 ms
167,680 KB
testcase_28 AC 1,387 ms
167,552 KB
testcase_29 AC 1,338 ms
167,680 KB
testcase_30 AC 1,330 ms
167,680 KB
testcase_31 AC 1,351 ms
167,680 KB
testcase_32 AC 1,358 ms
167,680 KB
testcase_33 AC 1,326 ms
167,680 KB
testcase_34 AC 1,346 ms
167,680 KB
testcase_35 AC 1,352 ms
167,552 KB
testcase_36 AC 1,321 ms
167,680 KB
testcase_37 AC 1,320 ms
167,552 KB
testcase_38 AC 1,338 ms
167,552 KB
testcase_39 AC 1,352 ms
167,552 KB
testcase_40 AC 1,384 ms
167,552 KB
testcase_41 AC 1,358 ms
167,680 KB
testcase_42 AC 1,378 ms
167,424 KB
testcase_43 AC 1,432 ms
167,552 KB
testcase_44 AC 1,369 ms
167,680 KB
testcase_45 AC 1,376 ms
167,680 KB
testcase_46 AC 1,376 ms
167,552 KB
testcase_47 AC 1,484 ms
167,552 KB
testcase_48 AC 1,555 ms
167,680 KB
testcase_49 AC 1,463 ms
167,552 KB
testcase_50 AC 1,362 ms
167,552 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,429 ms
167,552 KB
testcase_57 AC 1,416 ms
167,552 KB
testcase_58 AC 1,469 ms
167,552 KB
testcase_59 AC 1,435 ms
167,552 KB
testcase_60 AC 1,420 ms
167,680 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){
			if (i >= n){
				rep(k,0,50){
					dp[k][i][i+len] = dp[k][i-n][i-n+len];
				}
				continue;
			}
			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