結果

問題 No.2423 Merge Stones
ユーザー shobonvipshobonvip
提出日時 2023-08-12 14:21:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,747 bytes
コンパイル時間 3,307 ms
コンパイル使用メモリ 224,788 KB
実行使用メモリ 196,444 KB
最終ジャッジ日時 2024-11-19 19:11:49
合計ジャッジ時間 141,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
61,836 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 13 ms
61,296 KB
testcase_05 AC 15 ms
64,492 KB
testcase_06 AC 15 ms
64,888 KB
testcase_07 WA -
testcase_08 AC 15 ms
63,432 KB
testcase_09 AC 14 ms
64,416 KB
testcase_10 AC 15 ms
66,420 KB
testcase_11 AC 3,295 ms
175,772 KB
testcase_12 AC 1,996 ms
175,616 KB
testcase_13 AC 2,001 ms
175,912 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,991 ms
175,676 KB
testcase_17 AC 1,958 ms
175,668 KB
testcase_18 AC 1,952 ms
175,824 KB
testcase_19 AC 1,973 ms
175,924 KB
testcase_20 WA -
testcase_21 AC 1,903 ms
175,700 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,960 ms
175,908 KB
testcase_25 AC 1,988 ms
175,820 KB
testcase_26 AC 1,897 ms
175,780 KB
testcase_27 WA -
testcase_28 AC 1,916 ms
175,680 KB
testcase_29 WA -
testcase_30 AC 1,913 ms
175,884 KB
testcase_31 AC 1,925 ms
175,712 KB
testcase_32 AC 1,889 ms
176,184 KB
testcase_33 AC 1,897 ms
175,800 KB
testcase_34 WA -
testcase_35 AC 1,886 ms
175,772 KB
testcase_36 AC 1,996 ms
175,940 KB
testcase_37 AC 1,968 ms
175,700 KB
testcase_38 AC 1,939 ms
175,764 KB
testcase_39 WA -
testcase_40 AC 1,894 ms
175,780 KB
testcase_41 AC 1,945 ms
175,928 KB
testcase_42 AC 1,876 ms
175,692 KB
testcase_43 AC 1,908 ms
175,848 KB
testcase_44 AC 1,891 ms
175,680 KB
testcase_45 AC 1,906 ms
176,464 KB
testcase_46 AC 1,894 ms
175,896 KB
testcase_47 WA -
testcase_48 AC 1,899 ms
176,012 KB
testcase_49 AC 1,849 ms
175,924 KB
testcase_50 AC 2,116 ms
176,292 KB
testcase_51 AC 2,225 ms
175,872 KB
testcase_52 AC 2,031 ms
175,900 KB
testcase_53 AC 2,275 ms
175,676 KB
testcase_54 AC 2,202 ms
175,664 KB
testcase_55 AC 2,267 ms
176,048 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 3,360 ms
175,840 KB
testcase_62 AC 3,224 ms
175,996 KB
testcase_63 AC 3,237 ms
176,016 KB
testcase_64 AC 3,158 ms
175,848 KB
testcase_65 AC 3,225 ms
175,604 KB
testcase_66 AC 3,007 ms
175,928 KB
testcase_67 AC 3,163 ms
175,688 KB
testcase_68 AC 3,022 ms
175,892 KB
testcase_69 AC 3,291 ms
175,816 KB
testcase_70 AC 2,786 ms
175,916 KB
testcase_71 AC 2,769 ms
176,320 KB
testcase_72 AC 2,805 ms
175,776 KB
権限があれば一括ダウンロードができます

ソースコード

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,k-f,k+f+1){
						if (!(0 <= l && l < 50)){
							continue;
						}
						chmax(dp[k][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