挑选

   日期:2020-10-14     浏览:95    评论:0    
核心提示://dp[i][j]表示前i个小朋友中左括号与右括号的差为j的最大实力值//dp1[i][j]表示前i个小朋友中左括号与右括号的差为j的方案总数。#include <cstdio>#include <algorithm>#include <cstring>using namespace std;const int maxn = 1e7 + 5;const int mod = 998244353;int n, w[maxn], c[maxn];long
//dp[i][j]表示前i个小朋友中左括号与右括号的差为j的最大实力值
//dp1[i][j]表示前i个小朋友中左括号与右括号的差为j的方案总数。
#include <cstdio>
#include <algorithm>
#include <cstring>

using namespace std;
const int maxn = 1e7 + 5;
const int mod = 998244353;
int n, w[maxn], c[maxn];
long long dp[5][maxn], dp1[5][maxn];
int s = 0;

void freopen() { 
	freopen("pick.in", "r", stdin);
	freopen("pick.out", "w", stdout);
}

int MAX(int x, int y) { 
	return x > y ? x : y;
}

int main() { 
	freopen();
	scanf("%d",&n);
	for(int i = 1;i <= n;i ++) { 
		scanf("%d", &w[i]);
	}
	for(int i = 1;i <= n;i ++) { 
		scanf("%d", &c[i]);
	}
	dp[0][0] = 0, s = 0;
	for(int i = 1;i <= n;i ++){ 
		s = 1 - s;
		for(int j = 0;j <= n;j ++){ 
			if(!j) { 
				dp[s][j] = max(dp[1 - s][j] , dp[1 - s][j + 1]);
				if(j >= c[i]) dp[s][j] = max(dp[s][j], dp[1 - s][j - c[i]] + w[i]);
			}
			else { 
				dp[s][j] = dp[1 - s][j + 1];
				if(j >= c[i]) dp[s][j] = max(dp[s][j], dp[1 - s][j - c[i]] + w[i]);
			}
		}
	}
	printf("%lld ",dp[s][0]);
	dp1[0][0] = 1, s = 0;
	for(int i = 1;i <= n;i ++){ 
		s = 1  - s;
		for(int j = 0;j <= n;j ++){ 
			if(!j){ 
				dp1[s][j] = (dp1[1 - s][j] + dp1[1 - s][j + 1]) % mod;
				if(j >= c[i]) dp1[s][j] = (dp1[s][j] + dp1[1 - s][j - c[i]]) % mod;
			}else{ 
				dp1[s][j] = dp1[1 - s][j + 1];
				if(j >= c[i]) dp1[s][j] = (dp1[s][j] + dp1[1 - s][j - c[i]]) % mod;
			}
		}
	}
	printf("%lld", dp1[s][0]);
	return 0;
}
 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服