Codeforces Round 931(Div.2) A~D2

2024-03-08 16:36
文章标签 codeforces round d2 div.2 931

本文主要是介绍Codeforces Round 931(Div.2) A~D2,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

A. Too Min Too Max (数学)

题意:

给定长度为 n n n的数组 a a a,求下列表达式的最大值, ( i , j , k , l ) (i,j,k,l) (i,j,k,l)为不同的索引
∣ a i − a j ∣ + ∣ a j − a k ∣ + ∣ a k − a l ∣ + ∣ a l − a i ∣ |a_i - a_j| + |a_j - a_k| + |a_k - a_l| + |a_l - a_i| aiaj+ajak+akal+alai

分析:

构造出最小-最大 + 最大-次小 + 次小-次大 + 次大-最小的形式。
去掉绝对值之后可以保证为 2 2 2个最大+ 2 2 2个次大- 2 2 2个最小- 2 2 2个次小

代码:

#include <bits/stdc++.h>using namespace std;
const int N = 2e5 + 5;
int a[N];int main() {int t;cin >> t;while (t--) {int n;cin >> n;for (int i = 1; i <= n; i++)cin >> a[i];sort(a + 1, a + 1 + n);cout << a[n] - a[1] + (a[n - 1] - a[1]) + (a[n - 1] - a[2]) + (a[n] - a[2]) << endl;}return 0;
}

B.Yet Another Coin Problem (枚举)

题意:

1 , 3 , 6 , 10 , 15 1,3,6,10,15 1,3,6,10,15面额的硬币无数枚,组成 n n n元的硬币至少需要多少枚硬币。

分析:

可以发现每种硬币最多出现次数有着限制:面额 1 1 1,最多出现 2 2 2次,面额 3 3 3,最多出现 1 1 1次,面额 6 6 6,最多出现 2 2 2次,面额 10 10 10,最多出现 2 2 2次,面额 15 15 15,没有限制。
枚举每种硬币出现次数即可。

代码:

#include <bits/stdc++.h>using namespace std;int main() {int t;cin >> t;while (t--) {int n;cin >> n;int ans = 1e9;for (int i1 = 0; i1 <= 2; i1++)for (int i3 = 0; i3 <= 1; i3++)for (int i6 = 0; i6 <= 2; i6++)for (int i10 = 0; i10 <= 2; i10++) {int sum = i1 + i3 * 3 + i6 * 6 + i10 * 10;if (sum <= n && (n - sum) % 15 == 0)ans = min(ans, (n - sum) / 15 + i1 + i3 + i6 + i10);}cout << ans << endl;}return 0;
}

C.Find a Mine (交互)

题意:

给定 n × m n \times m n×m的地图,地图上有两个位置有矿物。每次你需要输入一个坐标 ( x , y ) (x,y) (x,y),系统将返回曼哈顿距离最近的矿物的距离。你需要通过最多四次询问,找到其中一个矿物的位置。

分析:

我们首先询问 ( 1 , 1 ) , ( 1 , m ) (1,1),(1,m) (1,1),(1,m),并假设他们离第一个矿物更近,那么我们就可以解除第一个矿物的坐标,第三次询问用于确认计算结果是否正确。否则询问 ( 1 , n ) (1,n) (1,n),再和 ( 1 , 1 ) (1,1) (1,1)联立解出坐第一个矿物的坐标。

代码:

#include <bits/stdc++.h>using namespace std;
typedef long long LL;int ask(int x, int y) {cout << "? " << x << " " << y << endl;cout.flush();int tmp;cin >> tmp;return tmp;
}int main() {int t;cin >> t;while (t--) {int n, m;cin >> n >> m;int tmp1 = ask(1, 1), tmp2 = ask(1, m),tmp3 = ask(n, 1);if ((tmp1 + tmp3 + 3 - n) > 0 && (tmp1 + tmp3 + 3 - n) % 2 == 0) {int y1 = (tmp1 + tmp3 + 3 - n) / 2, x1 = tmp1 - y1 + 2;if (x1 >= 1 && x1 <= n && y1 >= 1 && y1 <= m) {int q = ask(x1, y1);if (q == 0) {cout << "! " << x1 << " " << y1 << endl;continue;}}}int x1 = (tmp1 + tmp2 + 3 - m) / 2, y1 = tmp1 + 2 - x1;cout << "! " << x1 << " " << y1 << endl;cout.flush();}return 0;
}

D1.XOR Break — Solo Version (位运算)

题意:

给定 x x x,每次可选择满足以下条件的 y y y

  • 0 < y < x 0 < y < x 0<y<x x ⨁ y < x x \bigoplus y < x xy<x

x x x变成 y y y或者 x ⨁ y x \bigoplus y xy,询问是否能够通过最多 63 63 63次操作令 x x x变为 m m m。请输出操作序列。

分析:

2 2 2的幂次是无解的,如果是这种情况,直接就是失败。如果两个数最高位相同,可以通过一步操作 x x x y y y。否则最高位一定不同,从最高位往下,如果 x x x y y y第一个不同的位中 y y y 1 1 1是无解的,因为无论如何操作这位都不可能是 1 1 1。否则就可以通过把从高位往下遇到的 x x x中的第一个 1 1 1变成从该位往下全是 1 1 1,可以得到一个全是 1 1 1的数字,再通过一步操作就可以变成 y y y

代码:

#include <bits/stdc++.h>using namespace std;
typedef long long LL;LL check(LL x, LL y) {if (y < x && (x ^ y) < x)return 1;LL t = (x ^ y);if (t < x && (x ^ t) < x)return 1;return 0;
}LL pow1(LL x) {return (x & (x - 1)) == 0;
}int main() {int t;cin >> t;while (t--) {LL n, m;cin >> n >> m;if ((n ^ m) < n) {cout << 1 << endl;cout << n << " " << m << " " << endl;continue;}if (pow1(n)) {cout << -1 << endl;continue;}int tmp1 = __lg(n ^ m);int tmp2 = -1;for (int i = tmp1 - 1; i >= 0; i--) {int bit1 = (n >> i & 1);int bit2 = (m >> i & 1);if (bit2 > bit1) {break;} else if (bit1) {tmp2 = i;break;}}if (tmp2 == -1) {cout << -1 << endl;continue;}vector<LL> ans;ans.push_back(n);LL tmp = n;tmp ^= 1LL << tmp1;tmp |= (1LL << (tmp2 + 1)) - 1;ans.push_back(tmp);if (tmp != m) {ans.push_back(m);}for (int i = 0; i + 1 < ans.size(); i++) {assert(check(ans[i], ans[i + 1]));}cout << ans.size() - 1 << endl;for (auto x: ans)cout << x << " ";cout << endl;}return 0;
}

D2.XOR Break — Solo Version (交互)

题意:

给一个数字 n n n,两个人轮流操作,

  • 当前人选择将 n n n拆分成 n = p 1 ⨁ p 2 , p 1 < n , p 2 < n n = p_1 \bigoplus p_2,p_1 < n, p_2 < n n=p1p2,p1<n,p2<n。无法拆分认为失败
  • 另一个人选择将 n n n变成 p 1 p_1 p1或者 p 2 p_2 p2

两人各拆分一次算作一次,询问是先手必胜还是后手必胜。你可以选择先后手,并和测试机进行这个游戏,你需要在 63 63 63轮之内获胜。

分析:

首先考虑 n n n数位上 1 1 1的个数,如果 1 1 1的个数是偶数,那么选择先手,否则选择后手。如果 1 1 1的个数是偶数,我们可以将其拆成两个奇数给后手,后手只能选择一个奇数拆成奇数加偶数还给先手。先手又从中选择偶数拆成两个奇数。最后无法操作的状态为 1 1 1的个数为 1 1 1

代码:

#include <bits/stdc++.h>using namespace std;
typedef long long LL;LL get(LL x) {for (LL i = 60; i >= 0; i--) {if ((x >> i) & 1)return i;}
}int cal(LL n) {int res = 0;for (int i = 60; i >= 0; i--) {if ((n >> i) & 1)res++;}return res;
}int main() {int t;cin >> t;while (t--) {LL n, x, y;cin >> n;if (cal(n) & 1) {cout << "second" << endl;cout.flush();while (true) {cin >> x >> y;if (x == 0 && y == 0)break;if (cal(x) % 2 == 0) {LL x1 = (1ll << get(x));cout << x1 << " " << (x ^ x1) << endl;cout.flush();} else {LL y1 = (1ll << get(y));cout << y1 << " " << (y ^ y1) << endl;cout.flush();}}} else {cout << "first" << endl;cout.flush();LL n1 = (1ll << get(n));cout << n1 << " " << (n ^ n1) << endl;cout.flush();while (true) {cin >> x >> y;if (x == 0 && y == 0)break;if (cal(x) % 2 == 0) {LL x1 = (1ll << get(x));cout << x1 << " " << (x ^ x1) << endl;cout.flush();} else {LL y1 = (1ll << get(y));cout << y1 << " " << (y ^ y1) << endl;cout.flush();}}}}return 0;
}

赛后交流

在比赛结束后,会在交流群中给出比赛题解,同学们可以在赛后查看题解进行补题。

群号: 704572101,赛后大家可以一起交流做题思路,分享做题技巧,欢迎大家的加入。

这篇关于Codeforces Round 931(Div.2) A~D2的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/787703

相关文章

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m

Codeforces Beta Round #47 C凸包 (最终写法)

题意慢慢看。 typedef long long LL ;int cmp(double x){if(fabs(x) < 1e-8) return 0 ;return x > 0 ? 1 : -1 ;}struct point{double x , y ;point(){}point(double _x , double _y):x(_x) , y(_y){}point op

Codeforces Round #113 (Div. 2) B 判断多边形是否在凸包内

题目点击打开链接 凸多边形A, 多边形B, 判断B是否严格在A内。  注意AB有重点 。  将A,B上的点合在一起求凸包,如果凸包上的点是B的某个点,则B肯定不在A内。 或者说B上的某点在凸包的边上则也说明B不严格在A里面。 这个处理有个巧妙的方法,只需在求凸包的时候, <=  改成< 也就是说凸包一条边上的所有点都重复点都记录在凸包里面了。 另外不能去重点。 int

Codeforces 482B 线段树

求是否存在这样的n个数; m次操作,每次操作就是三个数 l ,r,val          a[l] & a[l+1] &......&a[r] = val 就是区间l---r上的与的值为val 。 也就是意味着区间[L , R] 每个数要执行 | val 操作  最后判断  a[l] & a[l+1] &......&a[r] 是否= val import ja

Codeforces Round 971 (Div. 4) (A~G1)

A、B题太简单,不做解释 C 对于 x y 两个方向,每一个方向至少需要 x / k 向上取整的步数,取最大值。 由于 x 方向先移动,假如 x 方向需要的步数多于 y 方向的步数,那么最后 y 方向的那一步就不需要了,答案减 1 代码 #include <iostream>#include <algorithm>#include <vector>#include <string>

Codeforces#295(Div.2)A、B(模拟+BFS)

解题报告链接:点击打开链接 C. 题目链接:点击打开链接 解题思路: 对于给定的字符串,取出现次数最多的字母(可以同时有多个)。由这些字母组成长度为n的字符串,求有多少种组合。最后用数学知识即可。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <climits>

MemSQL Start[c]UP 2.0 - Round 1A(构造)

题目链接:http://codeforces.com/problemset/problem/452/A 解题思路: 打个表暴力查找匹配。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include <cstdio>#include <strin

Codeforces Round #281 (Div. 2)A(构造+暴力模拟)

题目链接:http://codeforces.com/problemset/problem/493/A 解题思路: 暴力的判断,分三种情况去判断即可。注意如果之前已经被罚下场后,那么在后面的罚下情况不应该算在输出结果内。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <co

Codeforces Round #182 (Div. 2)A(水题)

题目链接:http://codeforces.com/contest/302/problem/A 解题思路: 只要通过重新排列使区间内和为0即是1,否则是0. 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include <cstdio>#inc