比赛链接

A

代码

#include <bits/stdc++.h>
using namespace std;
using ll = long long; int a[507];
bool solve() {
int n;
cin >> n;
for (int i = 1;i <= n;i++) cin >> a[i];
int ans = 1e9;
for (int i = 2;i <= n;i++) ans = min(ans, max(0, a[i] - a[i - 1] + 1));
cout << (ans + 1) / 2 << '\n';
return true;
} int main() {
std::ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1;
cin >> t;
while (t--) {
if (!solve()) cout << -1 << '\n';
}
return 0;
}

B

代码

#include <bits/stdc++.h>
using namespace std;
using ll = long long; bool solve() {
int n, k;
cin >> n >> k;
int ans = 0;
for (int i = 0;i <= n;i++) {
int a = n, b = i;
int cnt = 2;
while (cnt < k && 0 <= a - b && a - b <= b) {
cnt++;
a -= b;
swap(a, b);
}
if (cnt == k) ans++;
}
cout << ans << '\n';
return true;
} int main() {
std::ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1;
cin >> t;
while (t--) {
if (!solve()) cout << -1 << '\n';
}
return 0;
}

C

题意

有一个数字集合 \(\{ 1,2,3,\cdots,10^{1000} \}\) 。

给定一个长为 $n $ 正整数数组 \(a\) ,每轮删除集合中排名 \(a_1,\cdots,a_n\) 的数字。

一共删 \(k\) 轮,问最后集合中最小的元素。

题解

知识点:枚举,贪心。

首先特判 \(a_1 \geq 2\) 的情况,答案就是 \(1\) 。

考虑从最后一轮逆推最后一个数的排名 \(x\) ,一开始 \(x = 1\) 。

我们考虑上一轮在 \(x\) 之前删了 \(pos\) 个数,那么 \(pos\) 应该满足 \(a_{pos} < x + pos <a_{pos+1}\) 。我们知道 \(a_{pos}\) 的递增速率是大于等于 \(pos\) 的,更具体地说,我们有 \(a_{pos} - pos < x < a_{pos+1} - pos-1+1\) ,显然 \(a_{pos}-pos\) 随着 \(pos\) 增加是不严格递增的,因此任意 \(pos\) 产生的区间都是非空的,所以我们一定能找到一个 \(pos\) 满足条件,可以考虑二分这个 \(pos\) 。

但我们注意到 \(x\) 是严格递增的,因此我们可以保留上一轮的 \(pos\) 继续递增。因此,复杂度可以优化成线性。

时间复杂度 \(O(n)\)

空间复杂度 \(O(n)\)

代码

#include <bits/stdc++.h>
using namespace std;
using ll = long long; int a[200007];
bool solve() {
int n, k;
cin >> n >> k;
for (int i = 1;i <= n;i++) cin >> a[i], a[i] -= i;
if (a[1] + 1 >= 2) {
cout << 1 << '\n';
return true;
}
ll x = 1;
int pos = 0;
for (int i = 1;i <= k;i++) {
while (pos < n) {
if (a[pos] < x && x < a[pos + 1] + 1) break;
pos++;
}
x += pos;
}
cout << x << '\n';
return true;
} int main() {
std::ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1;
cin >> t;
while (t--) {
if (!solve()) cout << -1 << '\n';
}
return 0;
}

D

题意

给定一个长为 \(n\) 的数组 \(a\) ,要求构造长为 \(n\) 的数组 \(b\) ,满足对于 \(1 \leq i \leq n\) 有 \(a_i\) 个下标 \(j\) 使得 \(b_i + b_j > 0\) 。

其中 \(a_i \in [0,n]\) ,要求 \(b_i \neq 0\) 且不存在 \(b_i + b_j = 0\) 。

题解

知识点:构造。

可以考虑从绝对值最大的数字开始构造,因为这些数字确定后可以直接删除,不会影响或产生确定的影响。显然,我们有 \(a_i < a_j\) 则 \(b_i<b_j\) ,同时若绝对值最大的数字 \(b_x<0\) 则 \(a_x = 0\) 否则 \(a_x = n\) 。

我们考虑将 \(a\) 从小到大排序,每次删除按如下操作:

  1. 若 \(a_1 = 0\) 成立,则 \(b_1 = -n\) ;若 \(a_n = n\) 成立,则 \(b_n = n\) ;若前面两者同时成立或不成立,则无解。

    同时成立代表,既有一个数字和任何数字加都是小于等于 \(0\) ,又有一个数字加任何数字都是大于 \(0\) 矛盾。

    同时不成立代表,不存在绝对值最大的数字(因为存在就一定会有 \(a_1 = 0\) 或 \(a_n = n\) )矛盾。

  2. 删去后,令 \(n \to n-1\) 。若删去的是 \(a_n\) ,则令所有 \(a_i\) 减 \(1\) 。

  3. 若存在剩余数字,则回到步骤 \(1\) ,否则就构造完成。

注意,构造时要保证原来的顺序。

时间复杂度 \(O(n \log n)\)

空间复杂度 \(O(n)\)

代码

#include <bits/stdc++.h>
using namespace std;
using ll = long long; int a[100007];
int b[100007];
bool solve() {
int n;
cin >> n;
for (int i = 1;i <= n;i++) cin >> a[i];
vector<int> ord(n + 1);
iota(ord.begin() + 1, ord.end(), 1);
sort(ord.begin() + 1, ord.end(), [&](int i, int j) {return a[i] < a[j];}); int l = 1, r = n, delta = 0;
while (l <= r) {
int ok = (a[ord[l]] - delta == 0) ^ (a[ord[r]] - delta == r - l + 1);
if (!ok) return false;
if (a[ord[l]] - delta == 0) {
b[ord[l]] = -(r - l + 1);
l++;
}
else {
b[ord[r]] = r - l + 1;
r--;
delta++;
}
}
cout << "YES" << '\n';
for (int i = 1;i <= n;i++) cout << b[i] << " \n"[i == n];
return true;
} int main() {
std::ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1;
cin >> t;
while (t--) {
if (!solve()) cout << "NO" << '\n';
}
return 0;
}

Codeforces Round #887 (Div. 2) A-D的更多相关文章

  1. Codeforces Round #366 (Div. 2) ABC

    Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...

  2. Codeforces Round #354 (Div. 2) ABCD

    Codeforces Round #354 (Div. 2) Problems     # Name     A Nicholas and Permutation standard input/out ...

  3. Codeforces Round #368 (Div. 2)

    直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...

  4. cf之路,1,Codeforces Round #345 (Div. 2)

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

  5. Codeforces Round #279 (Div. 2) ABCDE

    Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems     # Name     A Team Olympiad standard input/outpu ...

  6. Codeforces Round #262 (Div. 2) 1003

    Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...

  7. Codeforces Round #262 (Div. 2) 1004

    Codeforces Round #262 (Div. 2) 1004 D. Little Victor and Set time limit per test 1 second memory lim ...

  8. Codeforces Round #371 (Div. 1)

    A: 题目大意: 在一个multiset中要求支持3种操作: 1.增加一个数 2.删去一个数 3.给出一个01序列,问multiset中有多少这样的数,把它的十进制表示中的奇数改成1,偶数改成0后和给 ...

  9. Codeforces Round #268 (Div. 2) ABCD

    CF469 Codeforces Round #268 (Div. 2) http://codeforces.com/contest/469 开学了,时间少,水题就不写题解了,不水的题也不写这么详细了 ...

  10. 贪心+模拟 Codeforces Round #288 (Div. 2) C. Anya and Ghosts

    题目传送门 /* 贪心 + 模拟:首先,如果蜡烛的燃烧时间小于最少需要点燃的蜡烛数一定是-1(蜡烛是1秒点一支), num[g[i]]记录每个鬼访问时已点燃的蜡烛数,若不够,tmp为还需要的蜡烛数, ...

随机推荐

  1. 【MicroPython】生成QSTR表 - py\makeqstrdata.py

    转义非字母数字的字符,转义结果为预定义字符串codepoint2name[] def qstr_escape(qst): def esc_char(m): c = ord(m.group(0)) tr ...

  2. JMS微服务开发示例(三)使用分布式锁和编写定时任务

    分布式锁 在Controller当中,提供了分布式锁的功能,代码如下: class HelloworldController : MicroServiceControllerBase { static ...

  3. 聊聊x86计算机启动发生的事?

    大家好,我是呼噜噜,最近在看linux早期内核0.12的源码,突然想到一个困扰自己好久的问题:当我们按下电源键,计算机发生了什么?神秘地址0x7C00究竟是什么?操作系统又是如何被加载到硬件中的?带着 ...

  4. [转帖]如何不耍流氓的做运维之-SHELL脚本

    https://www.cnblogs.com/luoahong/articles/8504691.html 前言 大家都是文明人,尤其是做运维的,那叫一个斯文啊.怎么能耍流氓呢?赶紧看看,编写SHE ...

  5. [转帖]redis缓存命中率介绍

    缓存命中率的介绍 命中:可以直接通过缓存获取到需要的数据. 不命中:无法直接通过缓存获取到想要的数据,需要再次查询数据库或者执行其它的操作.原因可能是由于缓存中根本不存在,或者缓存已经过期. 通常来讲 ...

  6. 【转帖】JVM 元数据区的内存泄漏之谜

    https://www.infoq.cn/article/Z111FLot92PD1ZP3sbrS 一.问题描述 某天,SRE 部门观察到一个非常重要的应用里面有一台服务器的业务处理时间(Transa ...

  7. 通过mat获取OOM时对象信息的方法与过程

    通过mat获取OOM时对象信息的方法与过程 背景 如果谁的耐心不好, 就让他去看MAT里的objects信息. 有项目出现了OOM的情况 我在公司这边有一台内存比较高的Win10机器. 然后帮助同事进 ...

  8. Seata配置参考

    注意:mysql.redis等连接密码需修改为相应值 Seata-Server 环境 版本:1.4.2 OS: CentOS Linux release 7.5.1804 (Core) ip:192. ...

  9. 【代码分享】使用 avx2 + 查表法,优化凯撒加密

    作者:张富春(ahfuzhang),转载时请注明作者和引用链接,谢谢! cnblogs博客 zhihu Github 公众号:一本正经的瞎扯 接上一篇:[代码分享]使用 avx512 + 查表法,优化 ...

  10. Python 潮流周刊第 19 期摘要

    原文全文:https://pythoncat.top/posts/2023-09-09-weekly 文章&教程 1.Mojo 终于提供下载了! 2.我们能从 PEP-703 中学到什么? 3 ...