Codeforces Round 835 (Div. 4)

本文最后更新于:2022年11月22日 早上

My Submission

Problem AC: 6

Problem Try: 6

Wrong Answer: 2

Medium Number

题意分析


返回三个数中的第二大的数字

参考代码


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int main(){
fastIO();
int t;
cin >>t;
loop(t){
int a,b,c;
cin >> a >> b >> c;
vi d;
d.push_back(a);
d.push_back(b);
d.push_back(c);

sort(all(d));
cout << d[1] << endl;
}
}

Atilla’s Favorite Problem

题意分析


返回给定字符串中最大的字符

参考代码


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int main(){
fastIO();
int t;
cin >>t;
loop(t){
int n;
string s;
cin >> n >> s;
int ans = 0;
for(char c:s){
ans = max(ans, c - 'a' + 1);
}
cout << ans << endl;
}
}

Advantage

题意分析


返回最大值和第二大的值的差值

参考代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
int main(){
fastIO();
int t;
cin >>t;
loop(t){
int n;
cin >> n;
vi a(n), b(n);
put(a);

for (int i = 0; i < n; ++i) {
b[i]=a[i];
}
sort(all(b));
int c = b[n-1], d = b[n-2];
for (int i = 0; i < n; ++i) {
if(a[i] == c) cout << c - d << ' ';
else cout << a[i] - c << ' ';
}
space();
}
}

Challenging Valleys

题意分析


寻找谷底,可在数组前后加入INT_MAX辅助判断

参考代码


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
int main() {
fastIO();
int t;
cin >> t;
loop(t) {
int n;
cin >> n;
vi a(n + 2);
a[0] = INT_MAX, a[n + 1] = INT_MAX;

for (int i = 1; i <= n; ++i) {
cin >> a[i];
}
int i = 0;
while (i < n + 2) {
if (i == n + 1) {
++i;
break;
}
if (a[i] >= a[i + 1])++i;
else {
break;
}
}

while (i < n + 2) {
if (i == n + 1) {
++i;
break;
}
if (a[i] <= a[i + 1])++i;
else break;
}

judge(i == n + 2);
}
}

Binary Inversions

题意分析


贪心:把最前面的0改成1和把最后面的1改成0计数即可

参考代码


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
ll check(vi &a) {
ll tot = 0;
unordered_map<int, int> map;
for(int v:a)++map[v];

for(int v:a){
if (v == 1) {
tot += map[0];
} else --map[0];
}
return tot;
}

int main() {
fastIO();
int t;
cin >> t;
loop(t) {
int n;
cin >> n;
vi a(n);
put(a);

ll ans = check(a);

for(int &v:a){
if (v == 0) {
v = 1;
ans = max(ans, check(a));
v = 0;
break;
}
}

for(int i = n - 1; i >= 0; --i) {
if (a[i] == 1) {
a[i] = 0;
ans = max(ans,check(a));
break;
}
}
cout << ans << endl;
}
}

Quests

题意分析


二分查找:二分答案k进行判定即可

注意返回ImpossibleInfinity的条件

参考代码


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
bool check(vector<ll> &a, ll tot, ll day) {
for (int i = 0; i < a.size() && day > 0; ++i, --day) {
tot -= a[i];
if (tot <= 0) return 1;
}
return tot <= 0;
}

bool cc(vector<ll> &a, ll tot, ll day, ll k) {
ll backet = k + 1, more = day % (k + 1), have = day / backet;
for(int i = 0; i < a.size() && backet > 0; ++i) {
tot -= (a[i] * have);
if (more)--more, tot -= a[i];
if (tot <= 0) return 1;
--backet;
}
return tot <= 0;
}

int main() {
fastIO();
int t;
cin >> t;
loop(t) {
ll n, c, d;
cin >> n >> c >> d;
vector<ll> a(n);
put(a);

sort(rall(a));
if (check(a, c,d)) {
cout << "Infinity" << endl;
continue;
}
ll left = 0, right = LLONG_MAX, ans = -1;

while (left < right) {
ll mid = left + (right - left) / 2;
if (cc(a, c, d, mid))ans = mid, left = mid + 1;
else right = mid;
}

if (cc(a,c,d,left))ans = left;

if (ans == -1) {
cout << "Impossible" << endl;
} else cout << ans << endl;
}
}

Codeforces Round 835 (Div. 4)
http://example.com/2022/11/22/Codeforces Round 835 (Div. 4)/
作者
Haruko
发布于
2022年11月22日
更新于
2022年11月22日
许可协议