-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2021CCPCWebPreB.cpp
More file actions
102 lines (86 loc) · 2.14 KB
/
2021CCPCWebPreB.cpp
File metadata and controls
102 lines (86 loc) · 2.14 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int Maxn = 101;
const int MaxLength = 1000100;
inline int read()
{
int fl = 1, rt = 0;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-')
fl = -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
rt = rt * 10 + ch - '0';
ch = getchar();
}
return fl * rt;
}
char *charList;
int *listCount;
char str[Maxn][13];
void Solve()
{
int T = read();
while (T--)
{
int vis[27];
int n = read(), diff = 0;
listCount = new int[n + 1];
for (int i = 1; i <= n; i++)
{
scanf("%s", str[i]);
listCount[i] = strlen(str[i]);
for (int j = 0; j < listCount[i]; j++)
if (!vis[str[i][j] - 'a'])
vis[str[i][j] - 'a'] = 1, diff++;
}
charList = new char[MaxLength];
int rest = n, nowCount = 1, nowPos = 0;
while (rest > 0)
{
charList[++nowPos] = str[nowCount][--listCount[nowCount]];
if (listCount[nowCount] == 0)
{
rest--;
listCount[nowCount] = strlen(str[nowCount]);
}
}
charList[nowPos] = '\0';
int length = strlen(charList);
int counter = 0, left = 0, right = 0, ans = length;
memset(vis, 0, sizeof(vis));
while (right < length)
{
while (right < length && counter < diff)
{
if (!vis[charList[right] - 'a'])
{
vis[charList[right] - 'a'] = 1;
counter++;
}
else
vis[charList[right] - 'a']++;
}
while (left <= right && counter == diff)
{
if (vis[charList[left] - 'a'] > 1)
{
vis[charList[left] - 'a']--;
left++;
}
}
ans = min(ans, right - left + 1);
}
printf("%d\n", ans);
}
}
int main()
{
Solve();
return 0;
}