写在前边

链接:Codeforces Round #696 (Div. 2)

A. Puzzle From the Future

链接:A题链接

题目大意:

给定一个\(a\),\(b\),\(d = a + b\),例如:\(a = 0101\), \(b= 1111\), \(d = 1212\),但是d如果有连续重复的数字那么会省掉,假如\(a + b = 12211\),则\(d = 121\),现在已知\(a\),\(b\)丢失了,要求求出一个\(b\)使得\(d\)最大。

思路

首先要使得\(d\)最大化,\(b\)的第一位必定是\(1\),剩下的直接从前到后模拟即可,若\(a_i + b_i == d[i-1]\)那么\(d\)会减小,因此“反其道而行之即可”。

代码:

#include <iostream>
#include <string>
#include <algorithm>
#include <cstdio> using namespace std; #define Inf 0x3f3f3f3f
#define PII pair<int, int>
#define PLL pair<long, long> typedef long long LL;
typedef unsigned long long ULL; void solve() {
string s, res = "1";
int n;
cin >> n;
cin >> s;
for (int i = 1; i < s.size(); i++) {
if (((s[i]-'0') + 1) == (s[i - 1] - '0' + res[i - 1] - '0')) {
res += '0';
} else {
res += '1';
}
} cout << res << endl;
} int main()
{
int t;
cin >> t;
while (t--) {
solve();
} return 0;
}

B. Different Divisors

链接:B题链接

题目大意:

给定一个\(d\),求\(a\),要求\(a\)至少有\(4\)个约数,并且约数两两之间的至少差\(d\),并且要求\(a\)是可行方案中中的最小值。

思路

\(\quad\) 题目要求四个约数,那么让其只有四个约数即可,即\(1 \quad p \quad q \quad pq\),\(p >= 1 + d\), \(q >= p + d\),因此\(p\)就是大于\(d + 1\)的最小质数,\(q\)就是大于\(p + d\)的最小质数,那么\(p * q\)就是满足条件\(a\)。

证明:

\(\quad\) 若\(p\)是一个\(>=1+d\)合数,那么\(1 -- p\)之间必定还会会有一个\(p\)的约数\(p′\),因为\(p′\)是\(p\)的约数,那么它必然也是\(a\)的约数这就使得\(p′-1 < d\),不满足约数之间至少差\(d\)的条件,因此矛盾。

\(\quad\) 若\(p\)不是最小质数,设其为\(p′\),另一个为\(q′\),那么\(p′ * q′ > p*q\),因此\(p′\)、\(q′\)并不是最优解。

综上:\(p\)为\(p >= 1 + d\)的最小质数与\(q\)为\(q >= p + d\)最小质数为最优解。

代码:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <vector> using namespace std; #define Inf 0x3f3f3f3f
#define PII pair<int, int>
#define PLL pair<long, long> typedef long long LL;
typedef unsigned long long ULL;
typedef vector<long long> VLL;
typedef vector<int> VI; const int N = 25e3 + 10;
int primes[N], cnt;
bool st[N]; void get_primes() {
for (int i = 2; i <= N; i++) {
if (!st[i]) {
primes[cnt++] = i;
}
for (int j = 0; primes[j] <= N / i; j++) {
st[primes[j] * i] = true;
if (i % primes[j] == 0) {
break;
}
}
}
} void solve() {
int d;
cin >> d;
int p, q, pcnt = 0;
for (pcnt; pcnt <= cnt; pcnt++) {
if (primes[pcnt] - 1 >= d) {
p = primes[pcnt];
break;
}
}
for (int i = pcnt; i <= cnt; i++) {
if (primes[i] - p >= d) {
q = primes[i];
break;
}
}
cout << p * q << endl;
} int main()
{
int t;
cin >> t;
get_primes();
while (t--) {
solve();
} return 0;
}

C. Array Destruction

链接:C题链接

题目大意:

例如,如果最初\(a=[3,5,1,2]\),则可以选择\(x=6\)。然后你可以选择第二个和第三个元素的总和\(5+1=6\),并抛出它们。在这个运算之后,\(x\)等于\(5\),数组中有两个元素:\(3\)和\(2\)。你可以在下次操作时把它们扔了,那么输出

YES
6
1 5
2 3

若无论如何数组内元素都无法清空,那么输出\(NO\)即可。

思路

每次选最大的数作为x。

证明:

假设\(a_i < a_j < a_k\),不选\(a_j\)来构造x,那么即\(a_i + a_j = x\),此后\(x = a_j\),之后无论如何都消除不掉\(a_k\),因此每次选最大数作为x即可。

那么第一次除了选最大的数作为下一轮的x,另一个数就需要枚举所有可能,直到枚举到一个可以消掉所有数的情况。明白了这一点那么剩下的只需要模拟即可,可以用\(multiset\),因为其查找删除插入操作都是\(O(logn)\),若不用\(multiset\)则手写二分查找即可,最时间复杂度:\(O(n^2logn)\)

自己的错误:写了一晚上,但最后还是\(TLE2\)告终,其实我已经知道了每次要选最大值了,但还是用双指针来搜哪两个数等于\(x\),由于答案唯一,因此搜的结果是对的,但是导致\(O(n^3)\)被卡,应该直接确定数组中还剩下的最大数,然后剩下的小数直接用二分搜就好了。

代码:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <vector>
#include <set> using namespace std; #define Inf 0x3f3f3f3f
#define PII pair<int, int>
#define PLL pair<long, long> typedef long long LL;
typedef unsigned long long ULL;
typedef vector<long long> VLL;
typedef vector<int> VI; vector<PII> check(VI all, int n, int x) {
vector<PII> res;
multiset<int> s;
for (auto it : all) {
s.insert(it);
}
for (int i = 0; i < n; i++) { //2*n个数,n个答案
auto it1 = s.end();
it1--;
int y = x - *it1;
s.erase(it1);
auto it2 = s.find(y);
if (it2 == s.end()) {
return {};
}
s.erase(it2);
res.push_back({y, x - y});
x = max(x - y, y);
}
return res;
} void solve() {
int n;
cin >> n;
VI all;
for (int i = 0; i < n * 2; i++) {
int c;
cin >> c;
all.push_back(c);
}
sort(all.begin(), all.end());
for (int i = 0; i < all.size() - 1; i++) { //枚举第一次操作的第二个数
int x = all[i] + all[all.size() - 1]; //最大的一个
vector<PII> res = check(all, n, x); if (res.size()) {
cout << "YES" << endl;
cout << x << endl;
for (auto it : res) {
cout << it.first << " " << it.second << endl;
}
return;
}
}
cout << "NO" << endl;
} int main()
{
int t;
cin >> t;
while (t--) {
solve();
} return 0;
}

Codeforces Round #696 (Div. 2) (A~C题解)的更多相关文章

  1. Codeforces Round #612 (Div. 2) 前四题题解

    这场比赛的出题人挺有意思,全部magic成了青色. 还有题目中的图片特别有趣. 晚上没打,开virtual contest打的,就会前三道,我太菜了. 最后看着题解补了第四道. 比赛传送门 A. An ...

  2. Codeforces Round #198 (Div. 2)A,B题解

    Codeforces Round #198 (Div. 2) 昨天看到奋斗群的群赛,好奇的去做了一下, 大概花了3个小时Ak,我大概可以退役了吧 那下面来稍微总结一下 A. The Wall Iahu ...

  3. Codeforces Round #672 (Div. 2) A - C1题解

    [Codeforces Round #672 (Div. 2) A - C1 ] 题目链接# A. Cubes Sorting 思路: " If Wheatley needs more th ...

  4. Codeforces Round #614 (Div. 2) A-E简要题解

    链接:https://codeforces.com/contest/1293 A. ConneR and the A.R.C. Markland-N 题意:略 思路:上下枚举1000次扫一遍,比较一下 ...

  5. Codeforces Round #610 (Div. 2) A-E简要题解

    contest链接: https://codeforces.com/contest/1282 A. Temporarily unavailable 题意: 给一个区间L,R通有网络,有个点x,在x+r ...

  6. Codeforces Round #611 (Div. 3) A-F简要题解

    contest链接:https://codeforces.com/contest/1283 A. Minutes Before the New Year 题意:给一个当前时间,输出离第二天差多少分钟 ...

  7. Codeforces Round #499 (Div. 2) D. Rocket题解

    题目: http://codeforces.com/contest/1011/problem/D This is an interactive problem. Natasha is going to ...

  8. Codeforces Round #499 (Div. 2) C Fly题解

    题目 http://codeforces.com/contest/1011/problem/C Natasha is going to fly on a rocket to Mars and retu ...

  9. Codeforces Round #198 (Div. 2)C,D题解

    接着是C,D的题解 C. Tourist Problem Iahub is a big fan of tourists. He wants to become a tourist himself, s ...

  10. Codeforces Round #579 (Div. 3) 套题 题解

    A. Circle of Students      题目:https://codeforces.com/contest/1203/problem/A 题意:一堆人坐成一个环,问能否按逆时针或者顺时针 ...

随机推荐

  1. React: 路由重定向

    解决方案 参考链接 https://v5.reactrouter.com/web/example/route-config

  2. python将两个列表组合成元组

    point_x = [A_x, B_x, C_x, D_x] point_y = [A_y, B_y, C_y, D_y] points_tulpe = list(zip(point_x, point ...

  3. 一 APPIUM基本理论知识(转)

    1.APPIUM介绍 Appium 是一个自动化测试开源工具,支持 iOS 平台和 Android 平台上的原生应用,web 应用和混合应用.所谓的"移动原生应用"是指那些用 iO ...

  4. 每日一库:fsnotify简介

    fsnotify是一个用Go编写的文件系统通知库.它提供了一种观察文件系统变化的机制,例如文件的创建.修改.删除.重命名和权限修改.它使用特定平台的事件通知API,例如Linux上的inotify,m ...

  5. 使用 Laf 一周内上线美术狮 AI 绘画小程序

    "美术狮 AI 绘画"(以下简称"美术狮"),是我们小团队的一次尝试,定位是人人都可以上手的,充满创意的,理解中文和中国文化的图片生成工具. 在完善图像模型和论 ...

  6. 文心一言 VS 讯飞星火 VS chatgpt (84)-- 算法导论8.2 1题

    一.用go语言,参照图8-2 的方法,说明 COUNTING-SORT 在数组 A=(6,0,2,0,1,3,4,6,1,3,2)上的操作过程. 文心一言: Counting Sort 是一种非比较型 ...

  7. 如何使用Grid中的repeat函数

    在本文中,我们将探索 CSS Grid repeat() 函数的所有可能性,它允许我们高效地创建 Grid 列和行的模式,甚至无需媒体查询就可以创建响应式布局. 不要重复自己 通过 grid-temp ...

  8. 【项目源码】基于JavaEE的健康管理系统

    随着网络技术的不断发展,网站的开发与运用变得更加广泛.这次采用java语言SSH框架(Spring,Struts,Hibernate)设计并实现了面向特定群体的健康管理平台.该网站主要有教师饮食管理. ...

  9. 浅聊一下SpringMVC的核心组件以及通过源码了解其执行流程

    浅聊一下SpringMVC的核心组件以及通过源码了解其执行流程 MVC作为WEB项目开发的核心环节,正如三个单词的分解那样,Controller(控制器)将View(视图.用户客户端)与Model(j ...

  10. SpringBoot打成jar运行后无法读取resources里的文件

    开发一个word替换功能时,因替换其中的内容功能需要 word 模版,就把 word_replace_tpl.docx 模版文件放到 resources 下 在开发环境中通过下面方法能读取word_r ...