Codeforces Round 932 (Div. 2) ABCD
A. Entertainment in MAC
题意:给定字符串 \(S\),有两种操作,每次操作其中之一:
- 把 \(S\) 变为 \(S\) 的翻转 \(T\)。
- 把 \(S\) 变为 \(S + T\)。
问操作恰好 \(n\) 次能得到的最小字典序,\(n\) 为偶数。
候选字符串的前缀要么是 \(S\),要么是 \(T\),前缀相同而长度更长肯定不优,因此 \(ans = min(S, T + S)\)。
void solve() {
cin >> n >> s;
t = s;
ranges::reverse(t);
if(t < s) cout << (t + s) << '\n';
else cout << s << '\n';
}
B. Informatics in MAC
题意:给定数组 \(a\),划分为若干段(大于 \(1\) ),求一种划分方式,使得每段的 \(mex\) 相同,或者不存在。
\(mex\) 相同的两段合并后 \(mex\) 不变。
于是问题转化为:把数组分为两段,使得每段 \(mex\) 相同。
预处理前缀以及后缀 \(mex\),枚举划分位置。
void solve() {
int n; cin >> n; vector<int> a(n + 1);
rep(i, 1, n) cin >> a[i];
vector<int> pre(n + 1, 0), suf(n + 1, 0);
set<int> se;
rep(i, 0, n) se.insert(i);
rep(i, 1, n) {
if(se.find(a[i]) != end(se)) {
se.erase(a[i]);
}
pre[i] = *begin(se);
}
rep(i, 0, n) se.insert(i);
per(i, n, 1) {
if(se.find(a[i]) != end(se)) {
se.erase(a[i]);
}
suf[i] = *begin(se);
}
rep(i, 2, n) {
if(pre[i - 1] == suf[i]) {
cout << 2 << '\n';
cout << 1 << ' ' << i - 1 << '\n';
cout << i << ' ' << n << '\n';
return;
}
}
cout << -1 << '\n';
}
C. Messenger in MAC
题意:给定 \(n\) 对 \((a, b)\),选出 \(k\) 对数据并任意排列。
一个长度为 \(k\) 的排列的代价如下定义:
\]
\(p\) 为各元素在排列中的位置。
在代价不大于 \(m\) 的情况下,最大化 \(k\)。
如果我们已经确定了所选元素,如何最小化代价。
$ \sum a$ 不会随顺序变化。
对于 \(b\),可以当做遍历数轴上的 \(k\) 个点所走的路程。
可以直观的看到,对 \(b\) 排序后最优。
因此,所有数先按 \(b\) 排序。
令 \(f[i][j]\) 表示选 \(i\) 个元素,最后一个元素是 \(j\) 的最小代价。
有
\]
直接转移是 \(O(n^3)\) 的,考虑前缀 \(min\) 优化。
令
\]
所以
\]
struct Node {
int a, b;
bool operator < (const Node &o) const {
return b < o.b;
}
};
void solve() {
int n, m; cin >> n >> m;
vector<Node> t(n + 1);
rep(i, 1, n) {
cin >> t[i].a >> t[i].b;
}
sort(All(t));
vector<vector<ll>> f(n + 1, vector<ll>(n + 1, 1e18));
int ans = 0;
rep(i, 1, n) {
if(t[i].a <= m) {
ans = 1;
}
f[1][i] = min(f[1][i - 1], (ll)t[i].a - t[i].b);
}
rep(i, 2, n) {
rep(j, i, n) {
f[i][j] = f[i - 1][j - 1] + t[j].a + t[j].b;
}
rep(j, i, n) {
if(f[i][j] <= m) {
ans = i;
}
f[i][j] = min(f[i][j - 1], f[i][j] - t[j].b);
}
}
cout << ans << '\n';
}
D. Exam in MAC
题意:给定一个大小为 \(n\) 的不可重集 \(s\) 和整数 \(c\),统计满足以下所有条件的 \((x, y)\) 对数。
- \(0 \leq x \leq y \leq c\)
- \(x + y\) 不在集合内。
- \(y - x\) 不在集合内。
简单的容斥。
\(Ans = U - \{x + y \in s\} - \{y - x \in s\} + \{x + y \in s\} \cap \{y - x \in s\}\)
最后一部分的交集的充要条件为两元素奇偶性相同,直接统计即可。
void solve() {
ll n, c; cin >> n >> c;
ll ans = (c + 2) * (c + 1) / 2;
int cnt[2] = {0, 0};
rep(i, 1, n) {
int x; cin >> x;
ans -= (x / 2 + 1);
ans -= (c - x + 1);
ans += ++ cnt[x & 1];
}
cout << ans << '\n';
}
Codeforces Round 932 (Div. 2) ABCD的更多相关文章
- Codeforces Round #258 (Div. 2)[ABCD]
Codeforces Round #258 (Div. 2)[ABCD] ACM 题目地址:Codeforces Round #258 (Div. 2) A - Game With Sticks 题意 ...
- Codeforces Round #354 (Div. 2) ABCD
Codeforces Round #354 (Div. 2) Problems # Name A Nicholas and Permutation standard input/out ...
- Codeforces Round #268 (Div. 2) ABCD
CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...
- Codeforces Round #449 (Div. 2)ABCD
又掉分了0 0. A. Scarborough Fair time limit per test 2 seconds memory limit per test 256 megabytes input ...
- Codeforces Round #143 (Div. 2) (ABCD 思维场)
题目连链接:http://codeforces.com/contest/231 A. Team time limit per test:2 seconds memory limit per test: ...
- Codeforces Round #248 (Div. 2) (ABCD解决问题的方法)
比赛链接:http://codeforces.com/contest/433 A. Kitahara Haruki's Gift time limit per test:1 second memory ...
- Codeforces Round #427 (Div. 2)——ABCD
http://codeforces.com/contest/835 A.拼英语水平和手速的签到题 #include <bits/stdc++.h> using namespace std; ...
- Codeforces Round #412 (Div. 2)ABCD
tourist的剧毒contest,题干长到让人不想做... A.看不太懂题意直接看下面input output note n组里有两数不一样的一组就rated 否则单调不增为maybe,否则unra ...
- Codeforces Round #315 (Div. 2) (ABCD题解)
比赛链接:http://codeforces.com/contest/569 A. Music time limit per test:2 seconds memory limit per test: ...
- Codeforces Round #352 (Div. 2) ABCD
Problems # Name A Summer Camp standard input/output 1 s, 256 MB x3197 B Different is Good ...
随机推荐
- C#通过文件头判断flv文件
代码如下: private void button1_Click(object sender, EventArgs e) { string path = Application.StartupPath ...
- Collation 差异导致 KingbaseES 与 Oracle 查询结果不同
问题引入 前端提了个问题,说是KingbaseES 返回的结果与 Oracle 返回的结果不一样.具体问题如下: oracle 执行结果:oracle 有结果返回. SQL> create ta ...
- OpenHarmony创新赛|赋能直播第三期
开放原子开源大赛OpenHarmony创新赛赋能直播间持续邀请众多技术专家一起分享应用开发技术知识,本期推出OpenHarmony应用开发之音视频播放器和三方库的使用和方法,助力开发者掌握多媒体应用 ...
- c# 托管和非托管资源-详解
前言 引用:带你复习c# 托管和非托管资源_C#教程_脚本之家 (jb51.net) c# 托管和非托管比较重要,因为这涉及到资源的释放. 现在只要在计算机上运行的,无论玩出什么花来,整个什么概念,逃 ...
- C#利用自动化接口编写OPC客户端,OPC Client,源码直接放网盘
引用:https://www.cnblogs.com/flh1/p/12409266.html 链接: https://pan.baidu.com/s/1Vs08c7qjShEc9GQ8dvCkdg ...
- openGauss 2.1.0 闪回特性
openGauss 2.1.0 闪回特性 openGauss 2.1.0 于 2021 年 9 月 30 日发布,是 openGauss 的一个 Preview 版本,该版本生命周期仅为半年.该版本的 ...
- openGauss每日一练(全文检索)
openGauss 每日一练(全文检索) 本文出处:https://www.modb.pro/db/224179 学习目标 学习 openGauss 全文检索 openGauss 提供了两种数据类型用 ...
- Native API在HarmonyOS应用工程中的使用指导
HarmonyOS的应用必须用js来桥接native.需要使用ace_napi仓中提供的napi接口来处理js交互.napi提供的接口名与三方Node.js一致,目前支持部分接口,符号表见ace_ ...
- 一种新的姿势:程序try/catch抛出异常之绕过canary pwn121
一种新的姿势:程序try/catch抛出异常之绕过canary 我前面发了不少关于绕过canary的姿势,先总结一下,现在绕过canary的姿势有泄露,爆破,格式化字符串绕过,多线程劫持TLS绕过, ...
- python mmsql连接支持
前言 因为我使用的是mmsql数据库,因为遇到一点坑,所以发布出来. 正文 准备工作: https://www.lfd.uci.edu/~gohlke/pythonlibs/#pymssql 下载对应 ...