(一个月前的比赛)

2069A - Was there an Array?

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
#include <bits/stdc++.h>
using namespace std;

int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);

int t;
cin >> t;

while (t--) {
int n;
cin >> n;
n -= 2;

vector<int> b(n);
for (int i = 0; i < n; i++) {
cin >> b[i];
}

bool flag = 1;
for (int i = 1; i < n - 1; i++) {
if (b[i - 1] == 1 && b[i] == 0 && b[i + 1] == 1) {
flag = 0;
}
}
cout << (flag ? "YES" : "NO") << endl;
}

return 0;
}

2069B - Set of Strangers

对于每种颜色,至多两次(按国际象棋棋盘黑白染色,只需要两次),如果有相邻,必然两次,否则一次。

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
#include <bits/stdc++.h>
using namespace std;
using LL = long long;

int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);

int t;
cin >> t;

while (t--) {
int n, m;
cin >> n >> m;

vector a(n, vector<int>(m));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> a[i][j];
a[i][j]--;
}
}

vector<int> cnt(n * m);
vector<int> flag(n * m);
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cnt[a[i][j]]++;
if (i && a[i][j] == a[i - 1][j]) {
flag[a[i][j]] = 1;
}
if (j && a[i][j] == a[i][j - 1]) {
flag[a[i][j]] = 1;
}
}
}

for (int i = 0; i < n * m; i++) {
cnt[i] = cnt[i] > 0;
cnt[i] += flag[i];
}

cout << (accumulate(cnt.begin(), cnt.end(), 0LL) - *max_element(cnt.begin(), cnt.end())) << endl;
}

return 0;
}

2069C - Beautiful Sequence

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
#include <bits/stdc++.h>
using namespace std;
using LL = long long;

constexpr LL mod = 998244353;

int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);

int t;
cin >> t;

while (t--) {
int n;
cin >> n;

vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}

LL res = 0;
LL sum = 0;
int cnt1 = 0;
for (int i = 0; i < n; i++) {
if (a[i] == 1) {
cnt1++;
} else if (a[i] == 2) {
sum <<= 1;
sum += cnt1;
sum %= mod;
} else {
res += sum;
res %= mod;
}
}
cout << res << endl;
}

return 0;
}