結果

問題 No.3626 Not a Prefix
コンテスト
ユーザー TKTYI
提出日時 2026-08-14 21:54:37
言語 C++23
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 97 ms / 2,000 ms
+ 102µs
コード長 3,299 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,431 ms
コンパイル使用メモリ 386,296 KB
実行使用メモリ 124,652 KB
最終ジャッジ日時 2026-08-14 21:54:45
合計ジャッジ時間 7,127 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long int ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<vvl> vvvl;
typedef vector<vvvl> vvvvl;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<vvb> vvvb;
typedef vector<vvvb> vvvvb;
typedef pair<ll,ll> pl;
typedef pair<ll,pl> ppl;
typedef pair<ll,ppl> pppl;
typedef pair<ll,pppl> 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))
template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
template<class T>bool chmax(T&a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T>bool chmin(T&a,T b){if(b<a){a=b;return 1;}return 0;}
//*
using mint=modint998244353;
const ll mod=998244353;
//*/
/*
using mint=modint1000000007;
const ll mod=1000000007;
//*/
//using mint=modint;
//*
typedef vector<mint> vm;
typedef vector<vm> vvm;
typedef vector<vvm> vvvm;
typedef vector<vvvm> vvvvm;
ostream&operator<<(ostream&os,mint a){os<<a.val();return os;}
istream&operator>>(istream&is,mint&a){int x;is>>x;a=mint(x);return is;}
//*/
template<typename T1,typename T2>ostream&operator<<(ostream&os,pair<T1,T2>p){os<<p.F<<" "<<p.S;return os;}
template<typename T1,typename T2>istream&operator>>(istream&is,pair<T1,T2>&p){is>>p.F>>p.S;return is;}
template<typename T>ostream&operator<<(ostream&os,vector<T>v){rep(i,0,sz(v))os<<v[i]<<(i+1!=sz(v)?" ":"");return os;}
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
struct trie{
    vector<int>parent,position;
    vector<map<char,int>>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<char,int>());
                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;
  vector<string>S(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;
  function<void(ll)>dfs=[&](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"<<endl;
  else cout<<"Yes"<<endl<<ans<<endl;
  return 0;
}
0