0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-10-18 09:08:48 +00:00

#3994. 「CSP-S 2023」密码锁

https://loj.ac/s/1935456
This commit is contained in:
Baoshuo Ren 2023-11-14 20:04:41 +08:00
parent 6b572e15fa
commit 866d42f1b3
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
25 changed files with 153 additions and 0 deletions

81
LibreOJ/3994/3994.cpp Normal file
View File

@ -0,0 +1,81 @@
#include <iostream>
#include <array>
#include <fstream>
#include <set>
// using std::cin;
// using std::cout;
std::ifstream cin("lock.in");
std::ofstream cout("lock.out");
const char endl = '\n';
const int N = 10,
M = 5;
int n, ans;
std::array<int, M> a[N];
std::set<std::array<int, M>> set_pre;
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) {
for (int j = 0; j < M; j++) {
cin >> a[i][j];
}
}
for (int i = 1; i <= n; i++) {
std::set<std::array<int, M>> set_now;
// Type 1: Only one element is different.
for (int j = 0; j < M; j++) {
std::array<int, M> t = a[i];
for (int k = 0; k < 10; k++) {
t[j] = (a[i][j] + k) % 10;
if (t[j] != a[i][j]) {
set_now.emplace(t);
}
}
}
// Type 2: Two adjacent elements are different.
for (int j = 0; j + 1 < M; j++) {
std::array<int, M> t = a[i];
for (int k = 0; k < 10; k++) {
t[j] = (a[i][j] + k) % 10;
t[j + 1] = (a[i][j + 1] + k) % 10;
if (t[j] != a[i][j]) {
set_now.emplace(t);
}
}
}
if (i == 1) {
ans = set_now.size();
set_pre = set_now;
} else {
std::set<std::array<int, M>> set;
for (auto o : set_pre) {
if (set_now.count(o)) {
set.emplace(o);
}
}
ans = set.size();
set_pre = set;
}
}
cout << ans << endl;
return 0;
}

BIN
LibreOJ/3994/data/lock1.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock10.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock2.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock3.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock4.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock5.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock6.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock7.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock8.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock9.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/data/lock9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/samples/lock1.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/samples/lock1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/samples/lock2.ans (Stored with Git LFS) Normal file

Binary file not shown.

BIN
LibreOJ/3994/samples/lock2.in (Stored with Git LFS) Normal file

Binary file not shown.