Educational Codeforces Round 61 (Rated for Div. 2)
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 ;
}
#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)的更多相关文章
- Educational Codeforces Round 61 (Rated for Div. 2) D,F题解
D. Stressful Training 题目链接:https://codeforces.com/contest/1132/problem/D 题意: 有n台电脑,每台电脑都有初始电量ai,也有一个 ...
- Educational Codeforces Round 61 (Rated for Div. 2) E 多重背包优化
https://codeforces.com/contest/1132/problem/E 题意 有8种物品,重量是1~8,每种数量是\(cnt[i]\)(1e16),问容量为W(1e18)的背包最多 ...
- Educational Codeforces Round 61 (Rated for Div. 2)-C. Painting the Fence 前缀和优化
题意就是给出多个区间,要求去掉两个区间,使得剩下的区间覆盖范围最大. 当然比赛的时候还是没能做出来,不得不佩服大佬的各种姿势. 当时我想的是用线段树维护区间和,然后用单点判0,维护区间间断个数.然后打 ...
- Educational Codeforces Round 61 (Rated for Div. 2) E. Knapsack
非常经典的dp题,因为1至8的最大公约数是840,任何一个数的和中840的倍数都是可以放在一起算的, 所以我只需要统计840*8的值(每个数字(1-8)的sum%840的总和),剩下都是840的倍数 ...
- 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 ...
- 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 ...
- 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] ...
- 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 ...
- 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 ...
随机推荐
- position fixed 相对于父级定位
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- Python-序列化模块-json-62
序列化模块 Eva_J 什么叫序列化——将原本的字典.列表等内容转换成一个字符串的过程就叫做序列化. 比如,我们在python代码中计算的一个数据需要给另外一段程序使用,那我们怎么给? 现在我们能想到 ...
- 使用ajax请求后端程序时,关于目标程序路径问题
这里涉及到和PHP中类似的问题,有待更新!!!
- 解决只能root权限登陆mysql的问题
一.问题描述 在用sqoop连接mysql时,会报错如下图所示,原因是mysql在默认情况下是使用了auth_socket plugin进行认证,即每次登陆都需要sudo mysql -u local ...
- 抓包工具之fiddler
fiddler手机抓包的原理与抓pc上的web数据一样,都是把fiddler当作代理,网络请求走fiddler,fiddler从中拦截数据,由于fiddler充当中间人的角色,所以可以解密https ...
- PHP之CLI模式
转载: http://www.cnblogs.com/zcy_soft/archive/2011/12/10/2283437.html 所有的PHP发行版,不论是编译自源代码的版本还是预创建的版本,都 ...
- 关于JS动画和CSS3动画的性能差异
本文章为综合其它资料所得. 根据Google Developer,Chromium项目里,渲染线程分为main thread和compositor thread. 如果CSS动画只是改变transfo ...
- js去除数组重复成员
js去除数组重复成员 第一种思路是:遍历要删除的数组arr, 把元素分别放入另一个数组tmp中,在判断该元素在arr中不存在才允许放入tmp中 用到两个函数:for ...in 和 indexOf() ...
- oracle创建表空间、创建用户、授权角色和导入导出用户数据
使用数据库管理员身份登录 -- log as sysdba sqlplus / as sysdba; 创建临时表空间 -- create temporary tablespace create tem ...
- Java 获取当前日期的四种方法
//1 通过Date类来获取当前时间,通过SimpleDateFormat来设置时间格式 SimpleDateFormat dateFormat = new SimpleDateFormat(&quo ...