Codeforces Round #697 (Div. 3)A~G解题报告

Codeforces Round #697 (Div. 3)A~G解题报告

题 A Odd Divisor

题目介绍

在这里插入图片描述

解题思路

乍一想本题,感觉有点迷迷糊糊,但是证难则反,直接考虑没有奇数因子的情况,即 N = 2i2^{i}2i,那么当N != 2i2^i2i时,就有 奇数因子
注意使用 LL

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;bool Check(LL x)
{while (x != 1){if (x & 1){return true;}x >>= 1;}return false;
}int main()
{LL n;int t;cin >> t;while (t -- ){scanf("%lld", &n);if (Check(n)){cout << "YES" << endl;}else{cout << "NO" << endl;}}return 0;
}



题 B New Year’s Number

题目介绍

在这里插入图片描述

解题思路

直接就是一个 dp裸题,倘若 x 是2021 与 2020 的若干和,那么 x == 2020 或 x ==2021或者x - 2020 满足要求 或者 x - 2021满足要求
有了上述的递推公式,直接开bool数组进行动态规划即可

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 1000010;
bool st[N];int main()
{int n;int t;cin >> t;st[2020] = st[2021] = true;for (int i = 2023; i < N; i ++ ){st[i] = st[i - 2021] | st[i - 2020];}while (t -- ){scanf("%d", &n);if (st[n]){cout << "YES\n";}else{cout << "NO\n";}}return 0;
}



题 C Ball in Berland

题目介绍

在这里插入图片描述

解题思路

同样是直接统计不太方便,我们直接反向思考,计算出总方案数量,减去不合法方案数量,得到结果
总方案数量 = k * (k - 1) / 2
不合法方案数量 = 同一个男生被选中两次 + 同一个女生被选中两次
记得开 LL

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 200010;
int boy_cnt[N], girl_cnt[N];
int n, m, k;int main()
{int t;cin >> t;LL res = 0;while (t -- ){scanf("%d%d%d", &n, &m, &k);res = LL(k) * (k - 1);memset(boy_cnt, 0, sizeof boy_cnt);memset(girl_cnt, 0, sizeof girl_cnt);for (int i = 1; i <= k; i ++ ){static int tmp;scanf("%d", &tmp);boy_cnt[tmp] ++;}for (int i = 1; i <= k; i ++ ){static int tmp;scanf("%d", &tmp);girl_cnt[tmp] ++;}for (int i = 1; i <= n; i ++ ){res -= LL(boy_cnt[i]) * (boy_cnt[i] - 1);}for (int i = 1; i <= m; i ++ ){res -= LL(girl_cnt[i]) * (girl_cnt[i] - 1);}/// cout << "#############\n";printf("%lld\n", res / 2);/// cout << res / 2 << endl;}return 0;
}



题 D Cleaning the Phone

题目介绍

在这里插入图片描述

解题思路

错误思路
本来将题目想成了 dp 进行求解,直接超时没商量,考虑一下复杂度,确实有问题
O(N*2N)太大
正解
这个题目应该进行贪心的,先处理出来bib_ibi=1数组,bib_ibi=2数组,然后对数组可以清空的内存进行排序。
排序后进行求取数组的前缀和,方便我们下面两种做法降低复杂度。
下面有两种问题的求解办法,
方法一、二分
对于 对于 每个 bib_ibi=1的下标进行枚举,然后对 bib_ibi=2数组进行二分,查找到满足释放内存的最小前缀数组的下标。 O(Nlog(N))O(Nlog(N))O(Nlog(N))
方法二、双指针
先找到一个合法解,然后数组下标进行移动,另一个指针作相应的调整即可。O(N)O(N)O(N)
但是算上排序,最终复杂度为 O(Nlog(N))O(Nlog(N))O(Nlog(N))

但是本题有一个最狗的地方,cmp函数被卡了,可以直接写归并排序,或者cmp函数别写等号,否则会超时

AC代码

双指针

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;const int N = 200010, INF = 0x3f3f3f3f;
LL a[N];
LL c[N], d[N];
LL n, m;
int idx1, idx2;bool cmp(LL x, LL y){ return x > y; }
void show()
{for (int i = 1; i <= idx1; i ++ )   cout << c[i] << " ";    cout << endl;for (int i = 1; i <= idx2; i ++ )   cout << d[i] << " ";    cout << endl;
}int main()
{int T;  cin >> T;while (T -- ){scanf("%lld %lld", &n, &m);for (LL i = 1; i <= n; i ++ )scanf("%lld", &a[i]);c[0] = d[0] = 0LL;idx1 = idx2 = 0;for (LL i = 1, b; i <= n; i ++ ){scanf("%lld", &b);if (b & 1)  c[++ idx1] = (a[i]);else    d[++ idx2] = (a[i]);}sort(c + 1, c + idx1 + 1, cmp);sort(d + 1, d + idx2 + 1, cmp);/// show();for (int i = 1; i <= idx1; i ++ )   c[i] += c[i - 1];for (int i = 1; i <= idx2; i ++ )   d[i] += d[i - 1];/// show();if (c[idx1] + d[idx2] < m){printf("-1\n");}else{int i, j, res = INF;for (i = 0; i <= idx1; i ++ )   // 尺取法的起点if (c[i] + d[idx2] >= m)    // c[i] 的开头break;j = idx2;res = min(res, i + j + j);// 此时i, j可以进行 尺取法 了while (i <= idx1 && j >= 0){while (j >= 0 && i <= idx1 && c[i] + d[j] < m){i ++;}if (i <= idx1 && j >= 0)res = min(res, i + j + j);while (i <= idx1 && j >= 0 && c[i] + d[j] >= m){if (i <= idx1 && j >= 0)res = min(res, i + j + j);j --;}}if (res == INF) res = -1;printf("%d\n", res);}}return 0;
}


二分

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 200010, INF = 0x3f3f3f3f;
int n, m;
int a[N];
LL c[N], d[N];
int szc, szd;bool cmp(LL a, LL b)
{return a > b;
}
int main()
{int T;  cin >> T;while (T -- ){static int b;cin >> n >> m;for (int i = 1; i <= n; i ++ )  scanf("%d", &a[i]);c[0] = d[0] = szc = szd = 0;for (int i = 1; i <= n; i ++ ){scanf("%d", &b);if (b & 1)c[++ szc] = a[i];elsed[++ szd] = a[i];}sort(c + 1, c + szc + 1, cmp);sort(d + 1, d + szd + 1, cmp);for (int i = 1; i <= szc; i ++ )    c[i] += c[i - 1];for (int i = 1; i <= szd; i ++ )    d[i] += d[i - 1];if (c[szc] + d[szd] < m){puts("-1");}else{int res = INF;for (int i = 0; i <= szc; i ++ ){if (c[i] + d[szd] < m)continue;else if (c[i] >= m){res = min(res, i);break;}else{static int tmp;tmp = lower_bound(d + 1, d + 1 + szd, m - c[i]) - d;res = min(res, tmp + tmp + i);}}cout << res << endl;}}return 0;
}

题 E Advertising Agency

题目介绍

在这里插入图片描述

解题思路

肯定是先对 博主的 粉丝数量进行排序,贪心的请博主即可,这个题目主要是求解 排列组合问题。
CijC_i^jCij=Ci−1jC_{i-1}^jCi1j+Ci−1j−1C_{i-1}^{j-1}Ci1j1
利用dp直接进行求解,关键是初始化写好就可以了 CiiC_i^iCii=Ci0C_i^0Ci0=1

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 1010, INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
int n, k;
int a[N];
int f[N][N];bool cmp(LL a, LL b)
{return a > b;
}int main()
{memset(f, 0, sizeof f);for (int i = 0; i < N; i ++ )f[i][i] = f[i][0] = 1;for (int i = 1; i < N; i ++ )for (int j = 1; j <= i; j ++ )f[i][j] = (f[i - 1][j] + f[i - 1][j - 1]) % MOD;int T;  cin >> T;while (T -- ){cin >> n >> k;for (int i = 1; i <= n; i ++ )scanf("%d", &a[i]);sort(a + 1, a + n + 1, cmp);static int x, sidx, eidx;x = a[k], sidx = -1, eidx = -1;for (int i = 1; i <= n; i ++ ){if (a[i] == x){if (sidx == -1) sidx = i;eidx = i;}}cout << f[eidx - sidx + 1][k - sidx + 1] << endl;}return 0;
}



题 F Unusual Matrix

题目介绍

在这里插入图片描述

解题思路

题目问的是能否从 An∗nA_{n*n}Ann矩阵转换到 Bn∗nB_{n*n}Bnn矩阵,由转换的性质,同一个行/列转换两次是没有任何作用的,因此我们枚举第一行需要操作/与不需要操作,那么第一行的元素能操作的对象只有列,因此列是否需要操作就得以确定,列确定,那么,反过来行也就得以确定,最终得到结果。

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 1010, INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
int n;
char a[N][N], b[N][N];
char c[N][N];inline void Change(char c[][N], int x, bool row);
bool Same(char c[][N], char d[][N], int x)
{for (int i = 1; i <= n; i ++ )if (c[x][i] != d[x][i])return false;return true;
}bool Check(char c[][N], char d[][N])
{// 第一行是不需要动的,我们看看 列 的影响for (int i = 1; i <= n; i ++ )if (c[1][i] != d[1][i])Change(c, i, false);for (int i = 2; i <= n; i ++ ){if (c[i][1] != d[i][1]) // 修改 行Change(c, i, true);if (!Same(c, d, i))return false;}return true;
}
inline void Change(char c[][N], int x, bool row)
{if (row)    // rowfor (int i = 1; i <= n; i ++ ){c[x][i] = 97 - c[x][i];   // 48 + 49 - c[i]}else        // colfor (int i = 1; i <= n; i ++ ){c[i][x] = 97 - c[i][x];   // 48 + 49 - c[i]}
}int main()
{int T;  cin >> T;while (T -- ){cin >> n;for (int i = 1; i <= n; i ++ )scanf("%s", a[i] + 1);for (int i = 1; i <= n; i ++ )scanf("%s", b[i] + 1);memcpy(c, a, sizeof c);if (Check(c, b) || (memcpy(c, a, sizeof c), Change(c, 1, true), Check(c, b)))puts("YES");elseputs("NO");}return 0;
}



题 G Strange Beauty

题目介绍

在这里插入图片描述

解题思路

这个题目是一个比较巧妙地dp题目,对于一个 BeutifulArrayBeutiful ArrayBeutifulArray我们将其非降序排序之后可以发现,后面的数字都是可以整除前面的,这是一个充分必要的条件
那么最长的数组对应着最长的整除序列
而且还有 一个坑点,鸡儿数字还可能相等,也就是我们需要先预处理出 XXX出现的次数
定义一个数组 fif_ifi表示,以数字 i 作为最大值,可以构成 BeautifulArrayBeautifulArrayBeautifulArray的最大长度,
fif_ifi = iii出现次数+maxmaxmax{因子的 j 的fjf_jfj}
下面是dp过程,而且为了方便书写,降低时间复杂度,直接将因子的相加写入了 因子的循环中

AC代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;typedef long long LL;
const int N = 200010, INF = 0x3f3f3f3f;int cnt[N];
int a[N];
bool st[N];
int f[N];
int n;int main()
{int T;  cin >> T;while (T -- ){static int res;cin >> n;for (int i = 1; i <= n; i ++ )scanf("%d", &a[i]);res = INF;sort(a + 1, a + 1 + n);memset(cnt, 0, sizeof cnt);memset(st, false, sizeof st);memset(f, 0, sizeof f);for (int i = 1; i <= n; i ++ )  cnt[a[i]] ++;for (int i = 1, val; i <= n; i ++ ){val = a[i];if (st[val])    continue;st[val] = true;// cnt[val] = max(cnt[val], 1);f[val] = f[val] + cnt[val];    // 给自己加的for (int j = val + val; j < N; j += val){f[j] = max(f[j], f[val]); // 给别的数字加的}res = min(res, n - f[val]);}cout << res << endl;}return 0;
}



本次CF小结

  • 小心快排可能被卡,导致超时,可以通过 修改cmp函数,或者是直接使用 归并排序来解决
  • 其次,考虑问题的时候,尤其是数量的问题,可以使用容斥定理,证难则反
  • 贪心、结合二分、或者是双指针来优化复杂度,有时候考虑dp背包复杂度太高
  • 求解组合数的常用方法要记住, dp,逆元,卢卡斯定理

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/474083.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 1048. 最长字符串链(哈希+DP)

文章目录1. 题目2. 解题1. 题目 给出一个单词列表&#xff0c;其中每个单词都由小写英文字母组成。 如果我们可以在 word1 的任何地方添加一个字母使其变成 word2&#xff0c;那么我们认为 word1 是 word2 的前身。 例如&#xff0c;“abc” 是 “abac” 的前身。 词链是单词…

LeetCode第45场双周赛-解题报告

LeetCode第45场双周赛-解题报告 A. 唯一元素的和 原题链接 https://leetcode-cn.com/problems/sum-of-unique-elements/ 解题思路 因为数据范围比较小&#xff0c;可以直接模拟&#xff0c;如果出现一次就加上去。 或者是直接map打表也可以 AC代码 暴力 class Soluti…

LeetCode 1034. 边框着色(BFS/DFS)

文章目录1. 题目2. 解题2.1 BFS2.2 DFS1. 题目 给出一个二维整数网格 grid&#xff0c;网格中的每个值表示该位置处的网格块的颜色。 只有当两个网格块的颜色相同&#xff0c;而且在四个方向中任意一个方向上相邻时&#xff0c;它们属于同一连通分量。 连通分量的边界是指连…

Codeforces Round #693 (Div. 3)A~G解题报告

Codeforces Round #693 (Div. 3)A~G解题报告 A Cards for Friends 原题信息 http://codeforces.com/contest/1472/problem/A 解题思路 本题就是一个找 x/2iold,y/2joldx/2^iold,y/2^joldx/2iold,y/2jold, 返回 2i∗2j>n2^i*2^j>n2i∗2j>n 一般这样的题目都需要注…

02.改善深层神经网络:超参数调试、正则化以及优化 W3. 超参数调试、Batch Norm和程序框架

文章目录1. 调试处理2. 为超参数选择合适的范围3. 超参数调试的实践4. 归一化网络的激活函数5. 将 Batch Norm 拟合进神经网络6. Batch Norm 为什么奏效7. 测试时的 Batch Norm8. Softmax 回归9. 训练一个 Softmax 分类器10. 深度学习框架11. TensorFlow作业参考&#xff1a; 吴…

关于整数划分的问题

&#xff08;一&#xff09;递归法 根据n和m的关系&#xff0c;考虑以下几种情况&#xff1a; &#xff08;1&#xff09;当n1时&#xff0c;不论m的值为多少&#xff08;m>0)&#xff0c;只有一种划分即{1}; (2) 当m1时&#xff0c;不论n的值为多少…

LeetCode第 227 场周赛题解

LeetCode第 227 场周赛题解 检查数组是否经排序和轮转得到 原题链接 https://leetcode-cn.com/problems/check-if-array-is-sorted-and-rotated/ 解题思路 直接进行测试就行&#xff0c;因为数组的数据范围很小&#xff0c;直接进行O(N2&#xff09;O(N^2&#xff09;O(…

LeetCode 1124. 表现良好的最长时间段(单调栈/哈希)

文章目录1. 题目2. 解题2.1 单调栈2.2 哈希1. 题目 给你一份工作时间表 hours&#xff0c;上面记录着某一位员工每天的工作小时数。 我们认为当员工一天中的工作小时数大于 8 小时的时候&#xff0c;那么这一天就是「劳累的一天」。 所谓「表现良好的时间段」&#xff0c;意…

二进制如何转十进制,十进制如何转二进制

1 转成二进制主要有以下几种&#xff1a;正整数转二进制&#xff0c;负整数转二进制&#xff0c;小数转二进制&#xff1b; 1、 正整数转成二进制。要点一定一定要记住哈&#xff1a;除二取余&#xff0c;然后倒序排列&#xff0c;高位补零。 也就是说&#x…

02.改善深层神经网络:超参数调试、正则化以及优化 W3. 超参数调试、Batch Norm和程序框架(作业:TensorFlow教程+数字手势预测)

文章目录1. 探索TensorFlow库1.1 线性函数1.2 计算 sigmoid1.3 计算损失函数1.4 One_Hot 编码1.5 用0,1初始化2. 用TensorFlow建立你的第一个神经网络2.0 数字手势识别2.1 创建 placeholder2.2 初始化参数2.3 前向传播2.4 计算损失2.5 后向传播、更新参数2.6 建立完整的TF模型2…

Codeforces Round #701 (Div. 2)赛后补题报告(A~D)

Codeforces Round #701 (Div. 2)赛后补题报告(A~D) A. Add and Divide 原题信息 http://codeforces.com/contest/1485/problem/A 解题思路 对于题目基本有两种方式&#xff0c;一种是直接暴力求解&#xff0c;第二种是使用函数求导进行严格证明 暴力求解 a1e9a1e^9a1e9不…

Codeforces Round #700 (Div. 2)A~D2解题报告

Codeforces Round #700 (Div. 2)A~D2解题报告 A Yet Another String Game 原题链接 http://codeforces.com/contest/1480/problem/A 解题思路 Alice想让更小&#xff0c;先手Bob想让其更大&#xff0c;后手解决方案当然是贪心&#xff0c;从第一个排到最后一个如果不是选择…

LeetCode 2020 力扣杯全国秋季编程大赛(656/3244,前20.2%)

文章目录1. 比赛结果2. 题目1. LeetCode LCP 17. 速算机器人 easy2. LeetCode LCP 18. 早餐组合 easy3. LeetCode LCP 19. 秋叶收藏集 medium4. LeetCode LCP 20. 快速公交 hard5. LeetCode LCP 21. 追逐游戏 hard1. 比赛结果 做出来2题&#xff0c;第三题写了好长时间无果。还…

LeetCode 第 206 场周赛(733/4491,前16.3%)

文章目录1. 比赛结果2. 题目1. LeetCode 5511. 二进制矩阵中的特殊位置 easy2. LeetCode 5512. 统计不开心的朋友 medium3. LeetCode 5513. 连接所有点的最小费用 medium4. LeetCode 5514. 检查字符串是否可以通过排序子字符串得到另一个字符串 hard1. 比赛结果 做出来3题。继…

lightoj 1026 无向图 求桥

题目链接&#xff1a;http://lightoj.com/volume_showproblem.php?problem1026 #include<cstdio> #include<cstring> #include<cmath> #include<iostream> #include<algorithm> #include<queue> #include<vector> using namespace …

python基础知识点小结(2021/2/9)

python基础知识点小结(2021/2/9)持续更新中~~ 入门小知识 cmd 在cmd上进行python&#xff0c;直接输入 python\quad pythonpython退出cmd输入 exit()\quad exit()exit()到指定文件夹上运行python文件 python路径文件名.py\quad python 路径文件名.pypython路径文件名.py pyt…

03.结构化机器学习项目 W1.机器学习策略(1)

文章目录1. 机器学习策略2. 正交化 Orthogonalization3. 单一数字评估指标4. 满足和优化指标5. 训练/开发/测试集划分6. 开发集和测试集的大小7. 什么时候该改变开发/测试集和指标8. 人类的表现水准9. 可避免偏差10. 理解人的表现11. 超过人的表现12. 改善你的模型的表现测试题…

Educational Codeforces Round 104 (Rated for Div. 2)A~E解题报告

Educational Codeforces Round 104 (Rated for Div. 2) A. Arena \quad原题链接 http://codeforces.com/contest/1487/problem/A \quad解题思路 首先&#xff0c;我们看战斗次数是无限的&#xff0c;任意非最小值的英雄都有赢得次数&#xff0c;既然有场次可以赢&#xff0…

LeetCode 1130. 叶值的最小代价生成树(区间DP/单调栈贪心)

文章目录1. 题目2. 解题2.1 DP2.2 单调栈贪心1. 题目 给你一个正整数数组 arr&#xff0c;考虑所有满足以下条件的二叉树&#xff1a; 每个节点都有 0 个或是 2 个子节点。数组 arr 中的值与树的中序遍历中每个叶节点的值一一对应。&#xff08;知识回顾&#xff1a;如果一个…

03.结构化机器学习项目 W2.机器学习策略(2)

文章目录1. 进行误差分析2. 清除标注错误的数据3. 快速搭建你的第一个系统&#xff0c;并进行迭代4. 使用来自不同分布的数据&#xff0c;进行训练和测试5. 数据分布不匹配时&#xff0c;偏差与方差的分析6. 定位数据不匹配问题7. 迁移学习 Transfer learning8. 多任务学习 Mul…