Testing Beta Round (Unrated)

Posted kanoon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Testing Beta Round (Unrated)相关的知识,希望对你有一定的参考价值。

比赛链接:https://codeforces.com/contest/1390

A. 123-sequence

题意

给出一个只含有 $1,2,3$ 的数组,问使所有元素相同至少要替换多少元素。

题解

统计数组中出现次数最多的元素即可。

代码

#include <bits/stdc++.h>
using namespace std;
int main() {
    int n; cin >> n;
    int mx = 0;
    map<int, int> cnt;
    for (int i = 0; i < n; ++i) {
        int x; cin >> x;
        mx = max(mx, ++cnt[x]);
    }
    cout << n - mx << "
";
}

B. Right Triangles

题意

给出一个只含有 ‘*‘,‘.‘ 的 $n imes m$ 的方阵,问方阵中有多少两条直角边与方阵平行的由 ‘*‘ 组成三个顶点的直角三角形。

题解

预处理出每个点上下左右 ‘*‘ 的个数,然后枚举四个方向的直角三角形即可。

Tips

 == 的优先级要先于 = ,所以如果赋值中有 == ,应将其括起来。

代码

#include <bits/stdc++.h>
using ll = long long;
using namespace std;
const int N = 1005;

int n, m;
char MP[N][N];
ll u[N][N], d[N][N], l[N][N], r[N][N];

int main() {
    cin >> n >> m;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            cin >> MP[i][j];
        }
    }
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            l[i][j] = l[i][j - 1] + (MP[i][j] == *);
        }
        for (int j = m; j >= 1; --j) {
            r[i][j] = r[i][j + 1] + (MP[i][j] == *);
        }
    }
    for (int i = 1; i <= m; ++i) {
        for (int j = 1; j <= n; ++j) {
            u[j][i] = u[j - 1][i] + (MP[j][i] == *);
        }
        for (int j = n; j >= 1; --j) {
            d[j][i] = d[j + 1][i] + (MP[j][i] == *);
        }
    }
    ll ans = 0;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            if (MP[i][j] == *) {
                --u[i][j], --d[i][j], --l[i][j], --r[i][j]; //减去自身
                ans += u[i][j] * l[i][j];
                ans += u[i][j] * r[i][j];
                ans += d[i][j] * l[i][j];
                ans += d[i][j] * r[i][j];
            }
        }
    }
    cout << ans << "
";
}

今晚的 cf 明天再补,早些休息吧

以上是关于Testing Beta Round (Unrated)的主要内容,如果未能解决你的问题,请参考以下文章

按测试实施组织的角度划分:α测试(Alpha Testing)β测试(Beta Testing)第三方测试

(CodeForces)Testing Round #14

Testing Round #12 A,B,C 讨论,贪心,树状数组优化dp

Leetcode刷题Python滑雪路径消耗时间:Testing Round #16 (Unrated) C. Skier

Codeforces Beta Round#2

Codeforces Beta Round #7