結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
48,688 KB
testcase_01 AC 9 ms
17,280 KB
testcase_02 AC 7 ms
16,128 KB
testcase_03 AC 6 ms
177,152 KB
testcase_04 AC 3 ms
10,624 KB
testcase_05 AC 8 ms
178,304 KB
testcase_06 AC 8 ms
16,896 KB
testcase_07 AC 6 ms
176,640 KB
testcase_08 AC 6 ms
14,336 KB
testcase_09 AC 4 ms
174,592 KB
testcase_10 AC 8 ms
16,512 KB
testcase_11 TLE -
testcase_12 AC 2,631 ms
173,056 KB
testcase_13 AC 2,564 ms
334,848 KB
testcase_14 AC 2,572 ms
173,184 KB
testcase_15 AC 2,566 ms
334,976 KB
testcase_16 AC 2,603 ms
173,056 KB
testcase_17 AC 2,605 ms
335,232 KB
testcase_18 AC 2,581 ms
173,056 KB
testcase_19 AC 2,578 ms
334,976 KB
testcase_20 AC 2,544 ms
173,056 KB
testcase_21 AC 2,649 ms
335,104 KB
testcase_22 AC 2,612 ms
173,184 KB
testcase_23 AC 2,567 ms
334,848 KB
testcase_24 AC 2,575 ms
173,056 KB
testcase_25 AC 2,567 ms
334,976 KB
testcase_26 AC 2,534 ms
173,056 KB
testcase_27 AC 2,552 ms
334,848 KB
testcase_28 AC 2,624 ms
173,056 KB
testcase_29 AC 2,560 ms
177,708 KB
testcase_30 AC 2,582 ms
173,056 KB
testcase_31 AC 2,528 ms
177,992 KB
testcase_32 AC 2,606 ms
172,928 KB
testcase_33 AC 2,597 ms
177,836 KB
testcase_34 AC 2,631 ms
172,540 KB
testcase_35 AC 2,595 ms
167,680 KB
testcase_36 AC 2,574 ms
167,680 KB
testcase_37 AC 2,610 ms
167,808 KB
testcase_38 AC 2,641 ms
167,680 KB
testcase_39 AC 2,590 ms
167,680 KB
testcase_40 AC 2,613 ms
167,808 KB
testcase_41 AC 2,639 ms
167,680 KB
testcase_42 AC 2,602 ms
167,680 KB
testcase_43 AC 2,632 ms
167,680 KB
testcase_44 AC 2,574 ms
167,552 KB
testcase_45 AC 2,600 ms
167,552 KB
testcase_46 AC 2,609 ms
167,680 KB
testcase_47 AC 2,573 ms
167,808 KB
testcase_48 AC 2,615 ms
167,808 KB
testcase_49 AC 2,627 ms
167,680 KB
testcase_50 AC 2,648 ms
167,680 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 2,671 ms
167,552 KB
testcase_57 AC 2,626 ms
167,552 KB
testcase_58 AC 2,757 ms
167,680 KB
testcase_59 AC 2,702 ms
167,680 KB
testcase_60 AC 2,657 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){
			// [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