Codeforces Round #733 (Div. 1 + Div. 2)
比赛链接:Here
1530A. Binary Decimal
现在规定一种只由0和1组成的数字,我们称这种数字为二进制数字,例如10,1010111
,给定一个数n,求该数字最少由多少个二进制数字组成.
水题,
每取一个二进制数字,可以使得原数字n上各位都减小1或者0,为了使次数尽可能地小,那么当原数字n上各位不为0的时候都应该-1,那么最小的次数就是各位上最大的数字
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int _; for (cin >> _; _--;) {
string s; cin >> s;
int cnt = s[0] - '0';
for (int i = 1; i < s.size(); ++i)cnt = max(s[i] - '0', cnt);
cout << cnt << "\n";
}
}
1530B. Putting Plates
给定一个高为h,宽为w的网格,你可以在网格的四个边缘处,放置一个盘子,每个盘子的四周都不能有别的盘子(四周指的是最近的8个格子),请输出一个种安排方式.
构造模拟题,首先为了使个数尽可能多,那么一定是从第一个开始放置,然后检测后面是否合法,如果合法就放下盘子,如果不合法就跳过.
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int _; for (cin >> _; _--;) {
int n, m;
cin >> n >> m;
vector<std::string> s(n, string(m, '0'));
for (int i = 0; i < m; i += 2) {
s[0][i] = '1';
}
for (int i = 1; i < n; i++) {
if (s[i - 1][m - 1] != '1' && s[i - 1][m - 2] != '1') {
s[i][m - 1] = '1';
}
}
for (int i = m - 2; i >= 0; i--) {
if (s[n - 1][i + 1] != '1' && s[n - 2][i + 1] != '1') {
s[n - 1][i] = '1';
}
}
for (int i = n - 2; i > 1; i--) {
if (s[i + 1][0] != '1' && s[i + 1][1] != '1') {
s[i][0] = '1';
}
}
for (int i = 0; i < n; i++) {
cout << s[i] << "\n";
}
}
}
1530C. Pursuit
二分,
给t组样例
每组样例给n个数
a[1] , a[2] , a[3] ...... a[n]
b[1] , b[2] , b[3] ...... b[n]
数据保证(0 <= a[i] , b[i] <= 100 , t组样例n的总和小于1e5)
a[i]表示第一个人在i这个阶段的分数
b[i]表示第二个人在i这个阶段的分数
现在只给了n个阶段每个人的分数
后面若干个阶段的分数值0到100之间都有可能
现在定义一个人在i这个阶段的得分为
从i个分数中取出 i - i / 4 个最大的分数相加即为
在i阶段的分数
问在n这个阶段是否第一个人的得分大于第二个人的得分
如果可以输出0
如果不行输出最少加几个阶段
使得第一个人的得分大于等于第二个人的得分
const int N = 1e6 + 10;
int a[N], b[N];
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int _; for (cin >> _; _--;) {
int n;
cin >> n;
for (int i = 1; i <= n; ++i)cin >> a[i];
for (int i = 1; i <= n; ++i)cin >> b[i];
sort(a + 1, a + 1 + n);
sort(b + 1, b + 1 + n);
auto check = [&](int k) {
int m = n + k, rm = m - m / 4;
int A = 0, B = 0;
for (int i = 1; i <= k; ++i) a[n + i] = 100;
for (int i = m; i > m - rm; --i)A += a[i];
for (int i = n; i > max(0, n - rm); --i)B += b[i];
return A >= B;
};
if (check(0))cout << "0\n";
else {
int l = 0, r = n;
while (r - l > 1) {
ll mid = (l + r) >> 1;
if (check(mid))r = mid;
else l = mid;
}
cout << r << "\n";
}
}
}
当然既然要让a的分数要大于等于b的分数
那么a[n+1] , a[n+2] , a[n+3] ......都应该是100
b[n+1] , b[n+2] , b[n+3] ....... 都应该是0
所以从大到小排序之后 用前缀和优化到 \(\mathcal{O}(n)\) 也是可以做的
1530D. Secret Santa
图论,
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
// jiangly TQL
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int _; for (cin >> _; _--;) {
int n;
cin >> n;
int ans = 0;
vector<int> a(n), b(n, -1), c(n, -1);
for (int i = 0; i < n; i++) {
cin >> a[i];
a[i]--;
if (c[a[i]] < 0) {
b[i] = a[i];
c[a[i]] = i;
ans++;
}
}
vector<int> u, v;
for (int i = 0; i < n; i++) {
if (c[i] >= 0) continue;
int j = i;
while (b[j] >= 0) j = b[j];
u.push_back(i);
v.push_back(j);
}
if (!u.empty()) {
if (u.size() > 1 || u[0] != v[0]) {
for (int i = 0; i < int(u.size()); i++)
b[v[i]] = u[(i + 1) % u.size()];
} else {
int x = u[0];
int y = a[x];
b[x] = y;
b[c[y]] = x;
}
}
cout << ans << "\n";
for (int i = 0; i < n; i++)
cout << b[i] + 1 << " \n"[i == n - 1];
}
}
Codeforces Round #733 (Div. 1 + Div. 2)的更多相关文章
- 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 53 (Rated for Div. 2) (前五题题解)
这场比赛没有打,后来补了一下,第五题数位dp好不容易才搞出来(我太菜啊). 比赛传送门:http://codeforces.com/contest/1073 A. Diverse Substring ...
- [Educational Codeforces Round 81 (Rated for Div. 2)]E. Permutation Separation(线段树,思维,前缀和)
[Educational Codeforces Round 81 (Rated for Div. 2)]E. Permutation Separation(线段树,思维,前缀和) E. Permuta ...
- Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems(动态规划+矩阵快速幂)
Problem Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems Time Limit: 3000 mSec P ...
- 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 ...
- Educational Codeforces Round 43 (Rated for Div. 2)
Educational Codeforces Round 43 (Rated for Div. 2) https://codeforces.com/contest/976 A #include< ...
- Educational Codeforces Round 35 (Rated for Div. 2)
Educational Codeforces Round 35 (Rated for Div. 2) https://codeforces.com/contest/911 A 模拟 #include& ...
- Educational Codeforces Round 59 (Rated for Div. 2) DE题解
Educational Codeforces Round 59 (Rated for Div. 2) D. Compression 题目链接:https://codeforces.com/contes ...
- Educational Codeforces Round 58 (Rated for Div. 2) 题解
Educational Codeforces Round 58 (Rated for Div. 2) 题目总链接:https://codeforces.com/contest/1101 A. Min ...
- Educational Codeforces Round 76 (Rated for Div. 2) E. The Contest
Educational Codeforces Round 76 (Rated for Div. 2) E. The Contest(dp+线段树) 题目链接 题意: 给定3个人互不相同的多个数字,可以 ...
随机推荐
- 震惊,微信小程序可以设置网络字体!真香
准备工作,获取字体链接 还原设计稿的时候需要用到如下特殊字体(google 的 Montserrat): https://fonts.google.com/specimen/Montserrat 选择 ...
- 小白必知:AIGC 和 ChatGPT 的区别
原文 : https://openaigptguide.com/chatgpt-aigc-difference/ AIGC 和 ChatGPT 都是人工智能技术,但它们的功能和应用场景不同. AIGC ...
- C++20语言核心特性的变化
using for Enumeration Values 对比一下C++20前后的区别: enum class State { open, progress, done = 9 }; // Bef ...
- 不要用第三方日志包了Microsoft.Extensions.Logging功能就很强大
在.NET中,Microsoft.Extensions.Logging是一个广泛使用的日志库,用于记录应用程序的日志信息.它提供了丰富的功能和灵活性,使开发人员能够轻松地记录各种类型的日志,并将其输出 ...
- ubuntu安装cudnn
有些忙,这一段时间,博客就随便写写了--- 默认cuda安装好了,这里就不多说了,我们从cuda的环境变量开始说起: 配置cuda环境变量: 打开终端,输入"gedit ~/.bashrc& ...
- jenkins安装部署、主从架构、slave镜像、K8S对接
介绍 CI/CD工具,自动化持续集成和持续部署,用于构建各种自动化任务. 官方提供了docker镜像https://hub.docker.com/r/jenkins/jenkins 使用Deploym ...
- mysql 定时 数据库备份并上传到另一台服务器上,上传结束并删除源文件
首先总共有两个脚本: #!/bin/bash:主要用于进行数据库备份.压缩.删除,单独运行命令是:bash XXX.sh #!/usr/bin/expect:主要用于进行数据备份文件的上传,单独运行 ...
- 数字孪生结合GIS会为智慧农业带来怎样的改变?
数字孪生是一种创新的技术,它通过将现实世界的物理实体与数字模型相结合,实现了实时.动态的仿真和预测.而地理信息系统(GIS)则是一种用于收集.管理.分析和展示地理数据的工具.当这两种技术相互融合时,将 ...
- 有意思,我的GitHub账号值$23806.2,快来试试你的?
睡不着,看到一个有意思的网站:Estimate Github Worth Generator. 它可以用来估算 GitHub 账号的价值.马上试了一下. 我的账号估值:$23806.2 操作很简单,点 ...
- ASR项目实战-决策点
针对语音识别的产品,分别记录设计.开发过程中的决策点. 实时语音识别 对于实时语音识别来说,客户端和服务端之间实时交换语音数据和识别的结果. 客户端在启动识别时,即开始发送语音数据,期望在等待较短的时 ...