A. Regular Bracket Sequence

题意:给出四种括号的数量 ((  )) ()  )( 问是否可以组成合法的序列(只能排序不能插在另外一个的中间)

思路: 条件一:一个或 n个)( 都可以组成 )()()( 这种结构 这只需要 一个((和一个))就可以合成合法的序列

   条件二: (( 和))需要相等

()本身就合法不用管

 ude<bits/stdc++.h>
#define FOR(i,f_start,f_end) for(int i=f_startl;i<=f_end;i++)
#define MS(arr,arr_value) memset(arr,arr_value,sizeof(arr))
using namespace std;
const int maxn=;
const int maxm=2e4+;
int main(){
int cnt1,cnt2,cnt3,cnt4;
cin>>cnt1>>cnt2>>cnt3>>cnt4;
if(cnt1==cnt4&&(cnt3&&cnt1||!cnt3)){
printf(""); }
else printf("");
return ;
}

B. Discounts

题意:给出n个数a 和m个数 q      求 选择q个数a 求他们的和-q个数中最小的那个 +剩余的数 的最小值

思路 :直接sort a  求出总和a 然后暴力  每次减去可以删除的那个数即可

 #include<bits/stdc++.h>
#define FOR(i,f_start,f_end) for(int i=f_start;i<=f_end;i++)
#define MS(arr,arr_value) memset(arr,arr_value,sizeof(arr))
using namespace std;
const int maxn=3e5+;
typedef long long ll;
ll a[maxn],q[maxn],sum[maxn];
int main(){
int n;
scanf("%d",&n);
FOR(i,,n)scanf("%I64d",&a[i]);
sort(a+,a++n);
FOR(i,,n)sum[i]=sum[i-]+a[i];
int m;
scanf("%d",&m);
int ans=0x3f3f3f3f;
FOR(i,,m-)scanf("%I64d",&q[i]);
FOR(i,,m-){
cout<<sum[n]-sum[n-q[i]+]+sum[n-q[i]]<<endl;;
} return ;
}
C. Painting the Fence
题意:给出q个区间 问q-2个区间的最大覆盖 n,q<5000
思路:给每个区间计数例如 给出区间 l--r  则FOR(i,l,r)cnt[i]++;
然后先枚举第一个删的区间 把这个要删的区间cnt[i]--  然后统计现在还有多少个区间可以用 这个还有一个重点 统计cnt为1的点的前缀和 这样枚举第二个删的区间时只要 多少个区间能用 - 第二个区间删去能使多少个点为0就可以计算了,很巧妙
 #include<bits/stdc++.h>
#define FOR(i,f_start,f_end) for(int i=f_start;i<=f_end;i++)
#define MS(arr,arr_value) memset(arr,arr_value,sizeof(arr))
#define F first
#define S second
#define pii pair<int ,int >
#define mkp make_pair
using namespace std;
const int maxn=+;
typedef long long ll;
pii a[maxn];
int sum[maxn],cnt[maxn];
int main(){
int n,q;
scanf("%d%d",&n,&q);
FOR(i,,q-){
scanf("%d%d",&a[i].F,&a[i].S);
FOR(j,a[i].F,a[i].S)cnt[j]++;
}
// for(int i=1;i<=n;i++)cout<<cnt[i];
int ans=;
FOR(i,,q-){ FOR(j,a[i].F,a[i].S)cnt[j]--;
int tot=;
FOR(k,,n){
tot+=(cnt[k]>);
if(cnt[k]==)sum[k]=;
else sum[k]=;
sum[k]+=sum[k-];
}
// FOR(k,1,n)cout<<sum[k];
// cout<<endl;
int tmp=;
FOR(j,,q-){ if(i==j)continue;
tmp= max(tmp,tot-(sum[a[j].S]-sum[a[j].F-]));
//if(tmp==3)cout<<i<<" "<<j<<" "<<tot<<" "<<sum[a[i].S]<<" "<<sum[a[i].F-1]<<endl;
}
FOR(j,a[i].F,a[i].S)cnt[j]++;
ans=max(tmp,ans);
}
cout<<ans<<endl;
return ;
}

F. Clear the String

题意:祖玛游戏 问最小多少次能全部消掉

思路 :区间dp[i][j] 表示 i 到j全部消掉要多少次  初始化 当s[i]==s[j]时dp[l][j]=dp[l+1][r-1]+1 不能时dp[l][r]=min(dp[l+1][r],dp[l][r-1])+1;然后在l r区间dp[l][r]=min(dp[l][r],dp[l][k]+dp[k][r]-1); 这里k取了两次 所以要减1

 #include<bits/stdc++.h>
#define FOR(i,f_start,f_end) for(int i=f_start;i<=f_end;i++)
#define MS(arr,arr_value) memset(arr,arr_value,sizeof(arr))
#define F first
#define S second
#define pii pair<int ,int >
#define mkp make_pair
using namespace std;
const int maxn=+;
char s[maxn];
int dp[maxn][maxn]; int main(){
int n;
scanf("%d",&n);
scanf("%s",s+);
FOR(i,,n)dp[i][i]=;
FOR(len,,n){
for(int l=,r=len;r<=n;r++,l++)
{
if(s[l]==s[r])dp[l][r]=dp[l+][r-]+;
else dp[l][r]=min(dp[l+][r],dp[l][r-])+;
FOR(k,l,r){
dp[l][r]=min(dp[l][r],dp[l][k]+dp[k][r]-);
}
}
}
cout<<dp[][n]<<endl; return ;
}

Educational Codeforces Round 61 (Rated for Div. 2)的更多相关文章

  1. Educational Codeforces Round 61 (Rated for Div. 2) D,F题解

    D. Stressful Training 题目链接:https://codeforces.com/contest/1132/problem/D 题意: 有n台电脑,每台电脑都有初始电量ai,也有一个 ...

  2. Educational Codeforces Round 61 (Rated for Div. 2) E 多重背包优化

    https://codeforces.com/contest/1132/problem/E 题意 有8种物品,重量是1~8,每种数量是\(cnt[i]\)(1e16),问容量为W(1e18)的背包最多 ...

  3. Educational Codeforces Round 61 (Rated for Div. 2)-C. Painting the Fence 前缀和优化

    题意就是给出多个区间,要求去掉两个区间,使得剩下的区间覆盖范围最大. 当然比赛的时候还是没能做出来,不得不佩服大佬的各种姿势. 当时我想的是用线段树维护区间和,然后用单点判0,维护区间间断个数.然后打 ...

  4. Educational Codeforces Round 61 (Rated for Div. 2) E. Knapsack

    非常经典的dp题,因为1至8的最大公约数是840,任何一个数的和中840的倍数都是可以放在一起算的, 所以我只需要统计840*8的值(每个数字(1-8)的sum%840的总和),剩下都是840的倍数 ...

  5. Educational Codeforces Round 61 (Rated for Div. 2) G(线段树,单调栈)

    #include<bits/stdc++.h>using namespace std;int st[1000007];int top;int s[1000007],t[1000007];i ...

  6. Educational Codeforces Round 61 (Rated for Div. 2)F(区间DP,思维,枚举)

    #include<bits/stdc++.h>typedef long long ll;const int inf=0x3f3f3f3f;using namespace std;char ...

  7. Educational Codeforces Round 61 (Rated for Div. 2)D(二分,模拟,思维)

    #include<bits/stdc++.h>using namespace std;typedef long long ll;int n,k;ll a[200007],b[200007] ...

  8. Educational Codeforces Round 37 (Rated for Div. 2)C. Swap Adjacent Elements (思维,前缀和)

    Educational Codeforces Round 37 (Rated for Div. 2)C. Swap Adjacent Elements time limit per test 1 se ...

  9. Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship Time Limit: 2000 mSec P ...

随机推荐

  1. C. Anton and Fairy Tale

    链接 [https://codeforces.com/contest/785/problem/C] 题意 初始时有n,第1天先加m开始吃1,但总的不能超过n,第i天先加m开始吃i(如果不够或刚好就吃完 ...

  2. UnderWater+SDN论文之三

    Software-Defined Underwater Acoustic Modems: Historical Review and the NILUS Approach Source: IEEE J ...

  3. message:GDI+ 中发生一般性错误。

    图片类型的文件保存的时候出了问题,可能是路径出错,也可能是保存到的文件夹不存在导致(发布项目的时候如果文件夹是空的,文件夹将不存在)

  4. 第五章 动态SQL 批量操作

    用于实现动态SQL的元素主要有 if trim where set choose(when.otherwise) foreach MyBatis  缓存 一级缓存 在test类中 调用相同的方法 第二 ...

  5. ~/.bashrc与/etc/profile的区别

    ~/.bashrc:该文件包含专用于某个用户的bash shell的bash信息,当该用户登录时以及每次打开新的shell时,该文件被读取. /etc/profile中设定的变量(全局)的可以作用于任 ...

  6. 08-webpack的介绍

    在这里我仅仅的是对webpack做个讲解,webpack这个工具非常强大,解决了我们前端很繁琐的一些工具流程繁琐的事情.如果感兴趣的同学,简易还是看官网吧. 中文链接地址:https://www.we ...

  7. DDoS攻击、CC攻击的攻击方式和防御方法

    DDoS攻击.CC攻击的攻击方式和防御方法 - sochishun - 博客园https://www.cnblogs.com/sochishun/p/7081739.html cc攻击_百度百科htt ...

  8. winform启动界面+登录窗口

    需求场景:先展示启动界面,然后打开登录界面,如果登录成功就跳转到主界面 首先在程序的入口路径加载启动界面,使用ShowDialog显示界面, 然后在启动界面中添加定时器,来实现显示一段时间的效果,等到 ...

  9. Jenkins+Docker自动化集成环境搭

    关于Docker Docker 简介 Docker现在是Github社区最火的项目之一,Docker是个容器,或许你听过lxc,你可能知道Tomcat这个Web容器,容器是什么概念,意会就好.问个问题 ...

  10. Azure系列2.1.10 —— CloudBlobClient

    (小弟自学Azure,文中有不正确之处,请路过各位大神指正.) 网上azure的资料较少,尤其是API,全是英文的,中文资料更是少之又少.这次由于公司项目需要使用Azure,所以对Azure的一些学习 ...