Codeforces Round 895 (Div. 3)
A. Two Vessels
题目翻译
你有两个装有水的容器。第一个容器含有克水,第二个容器含有克水。这两艘船都非常大,可以容纳任意数量的水。
您还有一个空杯子,最多可容纳克水。
一次,您可以从任何容器中舀出多克水,然后将其倒入另一个容器中。请注意,一次倒入的水的质量不必是整数。
使容器中水的质量相等所需的最少移动次数是多少?请注意,您无法执行除所描述的移动之外的任何操作。
思路
每次可以使得两个杯子的差距最多减少2*c,因此答案就是,向上取整
因为c++的/默认是下取整
向上取整可以写成:
或者使用ceil取整
或者使用 a/b+a%b!=0
代码
/**
* PROBLEM_NAME:A. Two Vessels
* ONLINE_JUDGE_NAME:Codeforces
* Date:2023/9/7
* Author:houyunfei
**/
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define IOS cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
#define cxk 1
#define debug(s, x) if (cxk) cout << "#debug:(" << s << ")=" << x << endl;
using namespace std;
void solve() {
int a, b, c;
cin >> a >> b >> c;
int res = (abs(a - b) + 2 * c - 1) / (2 * c);
cout << res << endl;
}
signed main() {
IOS
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
B. The Corridor or There and Back Again
题目翻译
你正处在一条向右无限延伸的走廊里,分成了几个方形的房间。您从房间开始,前往房间,然后返回房间。您可以选择的值。移动到相邻的房间需要秒。
另外,走廊里还有个陷阱:第个陷阱位于房间,将在你进入房间**后秒被激活。一旦陷阱被激活,你就无法进入或离开有该陷阱的房间。
可能的走廊以及通往房间和返回的路径的示意图。
确定的最大值,允许您从房间移动到房间,然后安全返回房间。
例如,如果和,你可以前往房间并安全返回(陷阱在时刻激活,不能阻止你返回)。但如果你试图到达房间,陷阱就会在时刻激活,阻止你返回(你会在第二个返回的路上尝试进入房间,但激活的陷阱会阻止你)。 任何更大的值也是不可行的。故答案为。
思路
因为数据范围比较小,可以直接暴力枚举时间1-300,看是否合法,取合法的最大时间
代码
/**
* PROBLEM_NAME:B. The Corridor or There and Back Again
* ONLINE_JUDGE_NAME:Codeforces
* Date:2023/9/7
* Author:houyunfei
**/
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define IOS cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
#define cxk 1
#define debug(s, x) if (cxk) cout << "#debug:(" << s << ")=" << x << endl;
using namespace std;
void solve() {
int n;
cin >> n;
vector<pair<int, int>> a(n + 1);
for (int i = 1, x, y; i <= n; i++) {
cin >> x >> y;
a[i] = {x, y};
}
int mx = 0;
for (int i = 1; i <= 300; i++) {
bool ok = 1;
for (int j = 1; j <= n; j++) {
if ((i - a[j].first) * 2 >= a[j].second) {
ok = 0;
break;
}
}
if (ok) {
mx = max(mx, i);
}
}
cout << mx << endl;
}
signed main() {
IOS
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
C. Non-coprime Split
题目翻译
给你两个整数。你需要找到正整数和,使得同时满足以下条件:
或报告它们不存在。
表示数字和的【最大公约数】(https://en.wikipedia.org/wiki/Greatest_common_divisor)。例如$\gcd(6, 9) = 3\gcd(8, 9) = 1\gcd(4, 2) = 2$。
思路
如果l=r,那么就看l是不是素数,如果是素数就无解,否则可以找到一个因子x,另一个数为l-x,而,因此
如果l!=r:
- r为奇数,此时r-1>=l ,并且r-1一定为偶数,因此可以构造 (2,r-1-2), 他们的gcd=2;
- r为偶数,可以直接构造(2,r-2),gcd=2;
此外,还需要特判一些误解的情况。
代码
/**
* PROBLEM_NAME:C. Non-coprime Split
* ONLINE_JUDGE_NAME:Codeforces
* Date:2023/9/7
* Author:houyunfei
**/
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define IOS cin.tie(0), cout.tie(0), ios::sync_with_stdio(false);
#define cxk 1
#define debug(s, x) if (cxk) cout << "#debug:(" << s << ")=" << x << endl;
using namespace std;
//13 14 15 16 17
int gcd(int a, int b) {
return b ? gcd(b, a % b) : a;
}
void solve() {
int l, r;
cin >> l >> r;
if (l == 1 && r <= 3) {
cout << -1 << endl;
return;
}
if (l == 2 && r <= 3) {
cout << -1 << endl;
return;
}
if (l != r) {
if (r & 1) {
cout << 2 << " " << r - 1 - 2 << endl;
} else {
cout << 2 << " " << r - 2 << endl;
}
} else {
for (int i = 2; i * i <= l; i++) {
if (l % i == 0) {
cout << i << " " << l - i << endl;
return;
}
}
cout << -1 << endl;
}
}
signed main() {
IOS
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
D. Plus Minus Permutation
题目翻译
给你个整数——、、。我们将排列的分数 称为以下值: