CFR-644F Spy-string 题解

题目大意

给你n个长度为m的字符串,问你能否找到一个字符串,使这个字符串与每个字符串最多只有一位不同。

解题思路

其实一开始想到了暴力。

这个数据这么小,肯定可以暴力。

刚开始想着以第一个字符串为基准,去判断其他的字符串。

结果错误的计算了时间复杂度,以为会TLE,就卡住了。。

刚好也没时间了。

(还是写的慢了。。

我们以第一个字符串为基准,更改它的每一位,这样最多也就与第一个字符串有一位不同。

再去判断除了第一个字符串以外的字符串是否不同的位数超过2位。

如果超过两位,就不行,重新枚举。

完整代码

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
50
51
52
53
54
55
56
57
58
59
60
#include <bits/stdc++.h>
#include <iostream>
#include <queue>
#include <cstring>
#include <cmath>
#include <stack>
#include <map>
#include <string>
#include <vector>
#include <algorithm>
#include <unordered_map>
using namespace std;
typedef long long ll;

char Map[20][20];
int n, m;

int check() {
int cnt = 0;
for (int i = 2; i <= n; i++) {
cnt = 0;
for (int j = 1; j <= m; j++) {
if (Map[i][j] != Map[1][j]) cnt++;
}
if (cnt > 1) return 0;
}
return 1;
}

int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
while (t--) {
cin >> n >> m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) cin >> Map[i][j];
}
int flag = 0;
for (int i = 1; i <= m; i++) {
char t = Map[1][i];
for (char j = 'a'; j <= 'z'; j++) {
Map[1][i] = j;
if (check()) {
flag = 1;
break;
}
}
if (flag == 1) break;
Map[1][i] = t;
}
if (flag) {
for (int i = 1; i <= m; i++) cout << Map[1][i];
cout << endl;
}
else cout << -1 << endl;
}
}
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • © 2015-2021 sakurakarma
  • Powered by Hexo Theme Ayer
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信