#include #include using namespace std; using namespace atcoder; typedef long long int ll; typedef long double ld; typedef vector vi; typedef vector vl; typedef vector vvl; typedef vector vvvl; typedef vector vvvvl; typedef vector vb; typedef vector vvb; typedef vector vvvb; typedef vector vvvvb; typedef pair pl; typedef pair ppl; typedef pair pppl; typedef pair pppppl; #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--) #define all(a) begin(a),end(a) #define sz(a) (int)(a).size() #define F first #define S second #define bs(A,x) binary_search(all(A),x) #define lb(A,x) (ll)(lower_bound(all(A),x)-A.begin()) #define ub(A,x) (ll)(upper_bound(all(A),x)-A.begin()) #define cou(A,x) (ll)(upper_bound(all(A),x)-lower_bound(all(A),x)) templateusing min_priority_queue=priority_queue,greater>; templatebool chmax(T&a,T b){if(abool chmin(T&a,T b){if(b vm; typedef vector vvm; typedef vector vvvm; typedef vector vvvvm; ostream&operator<<(ostream&os,mint a){os<>(istream&is,mint&a){int x;is>>x;a=mint(x);return is;} //*/ templateostream&operator<<(ostream&os,pairp){os<istream&operator>>(istream&is,pair&p){is>>p.F>>p.S;return is;} templateostream&operator<<(ostream&os,vectorv){rep(i,0,sz(v))os<istream&operator>>(istream&is,vector&v){for(T&in:v)is>>in;return is;} struct trie{ vectorparent,position; vector>children; trie():parent({-1}),children(1){} void add_string(string S){ int v=0; for(char c:S){ auto it=children[v].find(c); int nv; if(it==children[v].end()){ nv=parent.size(); children[v][c]=nv; children.emplace_back(map()); parent.emplace_back(v); } else nv=(*it).second; v=nv; } position.emplace_back(v); } }; int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit); ll N,M;cin>>N>>M; trie T; vectorS(N); rep(i,0,N){ cin>>S[i]; T.add_string(S[i]); } ll L=sz(T.parent); vl A(L),B(L); for(auto v:T.position){ B[v]++; while(T.parent[v])v=T.parent[v],A[v]++; A[0]++; } rep(i,1,L)B[i]+=B[T.parent[i]]; string ans="-",s; functiondfs=[&](ll v){ if(A[v]+B[v]<=N-M){ans=s;return;} bool done=0; for(char c='a';c<='z';c++){ s+=c; if(T.children[v].find(c)!=T.children[v].end()){dfs(T.children[v][c]);if(ans[0]!='-')return;} else if(!done){ if(B[v]<=N-M){ans=s;return;} done=1; } s.erase(s.end()-1); } }; dfs(0); if(ans=="-")cout<<"No"<