Codeforces Round 883 (Div. 3)
链接:https://codeforces.com/contest/1846
A. Rudolph and Cut the Rope
There are nails driven into the wall, the -th nail is driven meters above the ground, one end of the meters long rope is tied to it. All nails hang at different heights one above the other. One candy is tied to all ropes at once. Candy is tied to end of a rope that is not tied to a nail.
To take the candy, you need to lower it to the ground. To do this, Rudolph can cut some ropes, one at a time. Help Rudolph find the minimum number of ropes that must be cut to get the candy.
The figure shows an example of the first test:
Input
The first line contains one integer () — the number of test cases.
The first line of each test case contains one integer () — the number of nails.
The -th of the next lines contains two integers and () — the height of the -th nail and the length of the rope tied to it, all are different.
It is guaranteed that the data is not contradictory, it is possible to build a configuration described in the statement.
Output
For each test case print one integer — the minimum number of ropes that need to be cut to make the candy fall to the ground.
Example
input
4
3
4 3
3 1
1 2
4
9 2
5 2
7 7
3 4
5
11 7
5 10
12 9
3 2
1 5
3
5 6
4 5
7 7
output
2
2
3
0
思路
如果,那么此时这个糖果就不可以到地上,因此只需要统计的个数即可。
代码
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define debug(s, x) 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; i <= n; i++) {
int x, y;
cin >> x >> y;
a[i] = {x, y};
}
int cnt = 0;
for (int i = 1; i <= n; i++) {
if (a[i].first - a[i].second > 0) cnt++;
}
cout << cnt << endl;
}
signed main() {
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
B. Rudolph and Tic-Tac-Toe
Rudolph invented the game of tic-tac-toe for three players. It has classic rules, except for the third player who plays with pluses. Rudolf has a field — the result of the completed game. Each field cell contains either a cross, or a nought, or a plus sign, or nothing. The game is won by the player who makes a horizontal, vertical or diagonal row of 's of their symbols.
Rudolph wants to find the result of the game. Either exactly one of the three players won or it ended in a draw. It is guaranteed that multiple players cannot win at the same time.
Input
The first line contains one integer () — the number of test cases.
Each test case consists of three lines, each of which consists of three characters. The symbol can be one of four: "X" means a cross, "O" means a nought, "+" means a plus, "." means an empty cell.
Output
For each test case, print the string "X" if the crosses won, "O" if the noughts won, "+" if the pluses won, "DRAW" if there was a draw.
Example
input
5
+X+
OXO
OX.
O+.
+OX
X+O
.XO
OX.
+++
O.+
X.O
+..
.++
X.O
+..
output
X
O
+
DRAW
DRAW
思路
题意为3个人下3*3的棋盘,连成一条线就是赢,一个棋盘要么是平局,要么只有一个人可以赢。问是平局还是哪个人赢
依次判断3行,3列,两个对角线上的元素是否相同,如果相同并且不是'.',那么就说明那个元素获胜,否则平局。
代码
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define debug(s, x) cout << "#debug:(" << s << ")=" << x << endl;
using namespace std;
char g[10][10];
void solve() {
for (int i = 1; i <= 3; i++) {
for (int j = 1; j <= 3; j++) {
cin >> g[i][j];
}
}
for (int i = 1; i <= 3; i++) {
bool ok = true;
for (int j = 2; j <= 3; j++) {
if (g[i][j] != g[i][j - 1]) ok = false;
}
if (ok &&g[i][1]!='.') {
cout << g[i][1] << endl;
return;
}
}
for (int j = 1; j <= 3; j++) {
bool ok = true;
for (int i = 1; i < 3; i++) {
if (g[i][j] != g[i + 1][j]) ok = false;
}
if (ok&&g[1][j]!='.') {
cout << g[1][j] << endl;
return;
}
}
if (g[1][1] == g[2][2] && g[2][2] == g[3][3]&&g[1][1]!='.') {
cout << g[1][1] << endl;
return;
}
if (g[1][3] == g[2][2] && g[2][2] == g[3][1]&&g[2][2]!='.') {
cout << g[2][2] << endl;
return;
}
cout << "DRAW" << endl;
}
signed main() {
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
C. Rudolf and the Another Competition
Rudolf has registered for a programming competition that will follow the rules of ICPC. The rules imply that for each solved problem, a participant gets point, and also incurs a penalty equal to the number of minutes passed from the beginning of the competition to the moment of solving the problem. In the final table, the participant with the most points is ranked higher, and in case of a tie in points, the participant with the lower penalty is ranked higher.
In total, participants have registered for the competition. Rudolf is a participant with index . It is known that problems will be proposed. And the competition will last minutes.
A powerful artificial intelligence has predicted the values , which represent the number of minutes it will take for the -th participant to solve the -th problem.
Rudolf realized that the order of solving problems will affect the final result. For example, if , and the times to solve problems are [], then if Rudolf solves the problems in the order:
- , then he will only solve the third problem and get point and penalty.
- , then he will solve the first problem after minutes from the start, the second one after minutes, and he will not have time to solve the third one. Thus, he will get points and penalty.
- , then he will solve the second problem after minutes from the start, the first one after minutes, and he will not have time to solve the third one. Thus, he will get points and penalty.
Rudolf became interested in what place he will take in the competition if each participant solves problems in the optimal order based on the predictions of the artificial intelligence. It will be assumed that in case of a tie in points and penalty, Rudolf will take the best place.
Input
The first line contains an integer () — the number of test cases.
Then follow the descriptions of the test cases.
The first line of each test case contains three integers () — the number of participants, the number of problems, and the duration of the competition, respectively.
Then there are lines, each containing integers () — the number of minutes it will take for the -th participant to solve the -th problem.
The sum of over all test cases does not exceed .
Output
For each test case, output an integer — Rudolf's place in the final table if all participants solve problems in the optimal order.
Example
input
5
3 3 120
20 15 110
90 90 100
40 40 40
2 1 120
30
30
1 3 120
10 20 30
3 2 27
8 9
10 7
10 8
3 3 15
7 2 6
7 5 4
1 9 8
output
2
1
1
2
1
Note
In the first example, Rudolf will get points and penalty minutes. The second participant will solve only one problem and get point and penalty minutes. And the third participant will solve all problems and get points and penalty minutes. Thus, Rudolf will take the second place.
In the second example, both participants will get point and penalty minutes. In case of a tie in points, Rudolf gets the better position, so he will take the first place.
In the third example, Rudolf is the only participant, so he will take the first place.
In the fourth example, all participants can solve two problems with penalty of , and , respectively, thanks to the penalty, the second participant gets the first place, and Rudolf gets the second.
思路
题目就是ACM赛制,判断排名:
- 解题数目不同:题目多的排名靠前
- 解题数目相同:
- 罚时不同:罚时低的靠前
- 罚时相同:Rudolf靠前
只需要对结构体重载 排序规则即可
代码
#include <bits/stdc++.h>
#define int long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define debug(s, x) cout << "#debug:(" << s << ")=" << x << endl;
using namespace std;
typedef struct node {
int num, min, c;
bool operator<(const node& w) const {
if (num != w.num) return num > w.num;
if (min != w.min) return min < w.min;
return c > w.c;
}
} node;
void solve() {
int n, m, h;
cin >> n >> m >> h;
vector<node> a(n + 1);
for (int i = 1; i <= n; i++) {
vector<int> b(m + 1);
for (int i = 1; i <= m; i++) cin >> b[i];
sort(b.begin() + 1, b.end());
int cnt = 0, sum = 0, cur = 0;
for (int i = 1; i <= m; i++) {
if (cur + b[i] <= h) {
cnt++;
cur += b[i];
sum += cur;
}
}
a[i] = {cnt, sum, 0};
// cout << "i=" << i<<" " << cnt << " " << sum << endl;
if (i == 1) a[i].c = 1;
}
sort(a.begin() + 1, a.end());
for (int i = 1; i <= n; i++) {
if (a[i].c == 1) {
cout << i << endl;
return;
}
}
}
signed main() {
int _ = 1;
cin >> _;
while (_--) solve();
return 0;
}
D. Rudolph and Christmas Tree
Rudolph drew a beautiful Christmas tree and decided to print the picture. However, the ink in the cartridge often runs out at the most inconvenient moment. Therefore, Rudolph wants to calculate in advance how much green ink he will need.
The tree is a vertical trunk with identical triangular branches at different heights. The thickness of the trunk is negligible.
Each branch is an isosceles triangle with base and height , whose base is perpendicular to the trunk. The triangles are arranged upward at an angle, and the trunk passes exactly in the middle. The base of the -th triangle is located at a height of .
The figure below shows an example of a tree with and three branches with bases at heights .
Help Rudolph calculate the total area of the tree branches.
Input
The first line contains a single integer () — the number of test cases.
Then follow the descriptions of the test cases.
The first line of each test case contains three integers () — the number of branches, the length of the base, and the height of the branches, respectively.
The second line of each test case contains integers — the heights of the bases of the branches.
The sum of over all test cases does not exceed .
Output
For each test case, output a single real number on a separate line — the total area of the tree branches. The answer will be considered correct if its absolute or relative error does not exceed .
Example
input
5
3 4 2
1 4 5
1 5 1
3
4 6 6
1 2 3 4
2 1 200000
1 200000
2 4 3
9 11
output
11
2.5
34.5
199999.9999975
11.333333