比赛链接

A

题解

知识点:贪心。

注意到 \(a[1] \neq 1\) , \(1\) 永远不可能换到前面;\(a[1] = 1\) 可以交换后面任意元素。

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

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

代码

#include <bits/stdc++.h>
#define ll long long using namespace std; int a[20];
bool solve() {
int n;
cin >> n;
for (int i = 1;i <= n;i++) cin >> a[i];
if (a[1] == 1) cout << "YES" << '\n';
else cout << "NO" << '\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

题解

知识点:贪心,枚举。

分两类,一种是纯 \(1\) 或 \(0\) ,另一种是杂合。

显然后者的情况中,把所有数字全选了是最优的;前者枚举一下所有纯子串即可。两种情况,取最大值。

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

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

代码

#include <bits/stdc++.h>
#define ll long long using namespace std; bool solve() {
int n;
cin >> n;
string s;
cin >> s;
s = "?" + s;
int cnt0 = 0, cnt1 = 0;
for (int i = 1;i <= n;i++) {
if (s[i] == '0') cnt0++;
else cnt1++;
}
ll mx = 1LL * cnt0 * cnt1;
int i = 1, j = 1;
while (i <= n) {
while (j <= n && s[j] == s[i]) j++;
mx = max(mx, 1LL * (j - i) * (j - i));
i = j;
}
cout << mx << '\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

题解

知识点:构造。

注意到,只有 \(a=b\) 或者 \(a\) 每位都不等于 \(b\) 的对应位才可行。

考虑先把 \(a\) 串的 \(1\) 一个一个消掉,然后发现 \(b\) 会出现全 \(0\) 全 \(1\) 的情况,接下来分类讨论:

  1. 如果 \(a = b\) ,那么 \(a\) 中 \(1\) 为偶数时得到的 \(b\) 是 \(0\) ,否则是 \(1\) 。
  2. 如果 \(a\) 每位都不等于 \(b\) 的对应位 ,那么消掉一个 \(1\) 以后又会回到情况1,因此和情况 \(1\) 相反。

全是 \(0\) 直接可以结束,全是 \(1\) 可以先把 \([1,n]\) 取反,然后选择 \([1,1],[2,n]\) 即可。

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

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

代码

#include <bits/stdc++.h>
#define ll long long using namespace std; bool solve() {
int n;
cin >> n;
string a, b;
cin >> a >> b;
a = "?" + a;
b = "?" + b;
int cnt = 0;
for (int i = 1;i <= n;i++) cnt += a[i] == b[i];
if (cnt != 0 && cnt != n) return 0;
bool flag = cnt == n ? 0 : 1;
vector<pair<int, int>> ans;
for (int i = 1;i <= n;i++) {
if (a[i] == '1') {
ans.push_back({ i, i });
flag ^= 1;
}
}
if (flag) {
ans.push_back({ 1,n });
ans.push_back({ 1,1 });
ans.push_back({ 2,n });
}
cout << "YES" << '\n';
cout << ans.size() << '\n';
for (auto [i, j] : ans) cout << i << ' ' << j << '\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;
}

D

题解

知识点:质因数分解,容斥原理,数论。

题目要求我们每个 \(b_i\) 的方案数,然后得到总的方案数。

显然有 \(gcd(a_{i-1},b_i) = a_i\) ,注意到 \(a_i\) 必须是 \(a_{i-1}\) 的因子否则不可能得到答案,因此特判一下 \(a_{i} | a_{i-1}\) 。

于是,我们要找到所有的 \(b_i\) ,满足 \(gcd(\frac{a_{i-1}}{a_i},\frac{b_i}{a_i}) = 1\) 且 \(a_i | b_i\) ,其中 \(\frac{b_i}{a_i} \in [1,\frac{m}{a_i}]\) ,即我们从 \([1,\frac{m}{a_i}]\) 整数中找到和 \(\frac{a_{i-1}}{a_i}\) 互素的个数。

这是一个典型的容斥问题。先对 \(\frac{a_{i-1}}{a_i}\) 分解素因数,得到其素因子种类。我们先计算出区间中包含 \(\frac{a_{i-1}}{a_i}\) 因子的数的个数,注意奇加偶减,然后用总数 \(\frac{m}{a_i}\) 减去个数,即与之互素的数的个数,于是我们就得到了 \(b_i\) 的种类。

遍历每个 \(a_i\) 即可。

时间复杂度 \(O(n(\log a_i + 10\cdot 2^{10}))\)

代码

#include <bits/stdc++.h>
#define ll long long using namespace std; const int mod = 998244353; int a[200007]; bool vis[100007];
int prime[100007];
int cnt;
void euler_screen(int n) {
for (int i = 2;i <= n;i++) {
if (!vis[i]) prime[++cnt] = i;
for (int j = 1;j <= cnt && i * prime[j] <= n;j++) {
vis[i * prime[j]] = 1;
if (!(i % prime[j])) break;//如果到了i的最小质因子就不用继续,因为接下去的数x一定能被(i,x)之间的数筛掉
}
}
}///欧拉筛,O(n),每个合数只会被最小质因子筛掉 bool solve() {
int n, m;
cin >> n >> m;
for (int i = 1;i <= n;i++) cin >> a[i];
int ans = 1;
for (int i = 2;i <= n;i++) {
if (a[i - 1] % a[i]) {
ans = 0;
break;
} int d = a[i - 1] / a[i];//不能出现的因子
int base = m / a[i];//包含a[i]的数个数 vector<int> ft;//对d分解因子种类
for (int j = 1;j <= cnt && prime[j] <= d / prime[j];j++) {
if (d % prime[j] == 0) ft.push_back(prime[j]);
while (d % prime[j] == 0) d /= prime[j];
}
if (d > 1) ft.push_back(d); int sum = 0;//容斥原理,求[1,base]中没有d中因子的数个数
for (int j = 1; j < (1 << ft.size()); j++) {
int mul = 1, feat = 0;
for (int k = 0; k < ft.size(); k++) {
if (j & (1 << k)) {
mul *= ft[k];
feat++;
}
}
if (feat & 1) sum = (sum + 1LL * base / mul % mod) % mod;
else sum = (sum - 1LL * base / mul % mod + mod) % mod;
}
sum = (base - sum + mod) % mod; ans = 1LL * ans * sum % mod;
}
cout << ans << '\n';
return true;
} int main() {
std::ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t = 1;
cin >> t;
euler_screen(100007);
while (t--) {
if (!solve()) cout << -1 << '\n';
}
return 0;
}

CodeTON Round 3 (Div. 1 + Div. 2, Rated, Prizes!) A-D的更多相关文章

  1. Codeforces 1023 A.Single Wildcard Pattern Matching-匹配字符 (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)

    Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) A. Single Wildcard Patter ...

  2. CF Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined)

    1. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B. Batch Sort    暴力枚举,水 1.题意:n*m的数组, ...

  3. Codeforces Beta Round #27 (Codeforces format, Div. 2)

    Codeforces Beta Round #27 (Codeforces format, Div. 2) http://codeforces.com/contest/27 A #include< ...

  4. Codeforces Round #438 (Div.1+Div.2) 总结

    本来兴致勃勃的想乘着这一次上紫,于是很早很早的到了机房 但是好像并没有什么用,反而rating-=47 Codeforces Round #438(Div.1+Div.2) 今天就这样匆匆的总结一下, ...

  5. Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-D. Restore Permutation-构造+树状数组

    Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-D. Restore Permutation-构造+树状数组 [Pro ...

  6. Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-C. Magic Grid-构造

    Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-C. Magic Grid-构造 [Problem Descripti ...

  7. Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-E. Let Them Slide-思维+数据结构

    Manthan, Codefest 19 (open for everyone, rated, Div. 1 + Div. 2)-E. Let Them Slide-思维+数据结构 [Problem ...

  8. Codeforces Round #792 (Div. 1 + Div. 2) A-E

    Codeforces Round #792 (Div. 1 + Div. 2) A-E A 题目 https://codeforces.com/contest/1684/problem/A 题解 思路 ...

  9. Codeforces Round #792 (Div. 1 + Div. 2) // C ~ E

    比赛链接:Dashboard - Codeforces Round #792 (Div. 1 + Div. 2) - Codeforces C. Column Swapping 题意: 给定一个n*m ...

  10. 【codeforces】【比赛题解】#868 CF Round #438 (Div.1+Div.2)

    这次是Div.1+Div.2,所以有7题. 因为时间较早,而且正好赶上训练,所以机房开黑做. 然而我们都只做了3题.:(. 链接. [A]声控解锁 题意: Arkady的宠物狗Mu-mu有一只手机.它 ...

随机推荐

  1. shellcode 注入执行技术学习

    shellcode 注入执行技术学习 注入执行方式 CreateThread CreateRemoteThread QueueUserAPC CreateThread是一种用于执行Shellcode的 ...

  2. 彻底搞懂C#异步编程 async和await的原理

    1.前提 熟练掌握Task并行编程. 2.用Task并行解释async和await异步 因为控制台有多线程操作的优化,因此这里选择winform来做示例. 测试代码如下所示: 有三个textbox,一 ...

  3. 01_Linux基础-部署-VMware-Xshell-Xftp-内核-安迪比尔定理

    01_Linux基础-部署-VMware-Xshell-Xftp-内核-安迪比尔定理 博客:https://blog.csdn.net/cpen_web CentOS开源 免费 --- CentOS是 ...

  4. idea每次换行后光标都跑到最左边问题

    最进用idea时发现每次换行之后一段时间光标会自动跑到最左边,默认把我的首行空格删掉了 IDEA版本为:IntelliJ IDEA 2020.2.3 x64

  5. 依赖项安全检测新利器:Scorecard API

    Scorecard 是 OpenSSF 旗下的开源项目,用于评估开源软件风险,本文由该项目的主要贡献者 Naveen 撰写. 现代软件是建立在数百个甚至数千个第三方开源组件之上的,这些通常被称为依赖项 ...

  6. 在Winform开发中,我们使用的几种下拉列表展示字典数据的方式

    在Winform开发中中,我们为了方便客户选择,往往使用系统的字典数据选择,毕竟选择总比输入来的快捷.统一,一般我们都会简单封装一下,以便方便对控件的字典值进行展示处理,本篇随笔介绍DevExpres ...

  7. proxysql 开启http监控页面的方法

    update global_variables set variable_value='true' where variable_name='admin-web_enabled'; LOAD ADMI ...

  8. 改变一个数组内元素的位置,不通过splice方法。

    这个数据 现在已经完成了,将本来在第一位的18代金券改到第31位,下面说一下怎么实现的. //currHotRightsTypeSorted这个是数据源头,legalRightsType这个是数据的分 ...

  9. centos离线安装nvm

    PS:因为项目需,客户现场不能联网需要不同的node版本来切换,里面已经内置好了node 8.11.2和12.1.0 两个版本,使用nvm可以切换 链接:https://pan.baidu.com/s ...

  10. 页面导出Excel

    后端: 1.准备要导出的数据 2.利用XSSFWorkbook对象(workbook)创建工作簿行列等并添加数据 3.响应给前端 例: // 获取响应流 OutputStream output = r ...