CF #724(div2)B. Prinzessin der Verurteilung, BFS枚举
Posted 小哈里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF #724(div2)B. Prinzessin der Verurteilung, BFS枚举相关的知识,希望对你有一定的参考价值。
problem
B. Prinzessin der Verurteilung
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
I, Fischl, Prinzessin der Verurteilung, descend upon this land by the call of fate an — Oh, you are also a traveler from another world? Very well, I grant you permission to travel with me.
It is no surprise Fischl speaks with a strange choice of words. However, this time, not even Oz, her raven friend, can interpret her expressions! Maybe you can help us understand what this young princess is saying?
You are given a string of n lowercase Latin letters, the word that Fischl just spoke. You think that the MEX of this string may help you find the meaning behind this message. The MEX of the string is defined as the shortest string that doesn’t appear as a contiguous substring in the input. If multiple strings exist, the lexicographically smallest one is considered the MEX. Note that the empty substring does NOT count as a valid MEX.
A string a is lexicographically smaller than a string b if and only if one of the following holds:
a is a prefix of b, but a≠b;
in the first position where a and b differ, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b.
A string a is a substring of a string b if a can be obtained from b by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.
Find out what the MEX of the string is!
Input
Each test contains multiple test cases. The first line contains the number of test cases t (1≤t≤1000). Description of the test cases follows.
The first line of each test case contains an integer n (1≤n≤1000) — the length of the word. The second line for each test case contains a single string of n lowercase Latin letters.
The sum of n over all test cases will not exceed 1000.
Output
For each test case, output the MEX of the string on a new line.
Example
inputCopy
3
28
qaabzwsxedcrfvtgbyhnujmiklop
13
cleanairactbd
10
aannttoonn
outputCopy
ac
f
b
solution
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
string p = "abcdefghijklmnopqrstuvwxyz";
struct cmp{
bool operator() (const string &a, const string &b){
if(a.size()<b.size())return 1;
else return a<b;
}
};
int main(){
int T; cin>>T;
while(T--){
int n; string s; cin>>n>>s;
int ok = 0; string ans;
queue<string>q;
for(int i = 0; i < 26; i++){
string ns = string(1,p[i]);
q.push(ns);
if(s.find(ns)==string::npos){
ok = 1; ans = ns;
break;
}
}
while(q.size() && ok==0){
string t = q.front(); q.pop();
//cout<<t<<"\\n";
if(t.size()==26)break;
for(int i = 0; i < 26; i++){
string ns = t+string(1,p[i]);
q.push(ns);
if(s.find(ns)==string::npos){
ok = 1; ans = ns;
break;
}
}
}
cout<<ans<<"\\n";
}
return 0;
}
以上是关于CF #724(div2)B. Prinzessin der Verurteilung, BFS枚举的主要内容,如果未能解决你的问题,请参考以下文章
CF #724(div2)A. Omkar and Bad Story,贪心,构造序列
CF #738(div2)B. Mocha and Red and Blue(构造)
CF #737(div2)B. Moamen and k-subarrays,贪心,下标