学习笔记(DP) 刷题日记

这篇博客记录了作者在Codeforces和Luogu平台上的刷题心得,涉及题目包括Codeforces 1268B、1132F、999F以及Luogu P3574、P2607。通过贪心策略解决1268B,区间DP应用于1132F,999F问题采用分组背包方法,P3574与P2607则涉及到树上DP及贪心算法的应用。
摘要由CSDN通过智能技术生成

Codeforces 1268B

贪心的思想,从右往左把每列都取完或剩下一个(取余2)。
观察画图可以发现,若剩下一个的两列之间间隔列数为偶数的话,是可以通过最底下一行使得这两列剩下的那一个合并使得贡献加1。

#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
using namespace std;
const int maxn=3e5+5;
stack <int> s;
int main(){
   
	ios::sync_with_stdio(false);cin.tie(0);
	int n;cin>>n;
	ll ans=0;
	for(int i=1;i<=n;i++){
   
		int t;cin>>t;
		ans+=t/2;
		t%=2;
		if(!t) continue;
		if(!s.size()||s.top()==i%2) s.push(i%2);
		else{
   
			ans++;
			s.pop();
		}
	}
	cout<<ans<<endl;
}

Codeforces 1132F

一眼区间DP。
dp[i][j]表示合并i至j使得只剩下一个s[j]需要的最少次数,转移方程显而易见:
若s[k]与s[j]相同,那么合并时不需要多余的贡献,否则应该+1;

#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
using namespace std;
const int maxn=505;
const int inf=0x3f3f3f3f;
int dp[maxn][maxn];
int main(){
   
	ios::sync_with_stdio(false);cin.tie(0);
	int n;cin>>n;
	string s;cin>>s;
	memset(dp,inf,sizeof(dp));
	for(int i=0;i<n;i++) dp[i][i]=0;
	for(int len=1;len<=n;len++){
   
		for(int i=0;i<n;i++){
   
			int j=len+i-1;
			if(j>=n) continue;
			for(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值