Delete Them

原题地址:http://codeforces.com/problemset/problem/730/H

Delete Them

Polycarp is a beginner programmer. He is studying how to use a command line.

Polycarp faced the following problem. There are n files in a directory and he needs to delete some of them. Polycarp wants to run a single delete command with filename pattern as an argument. All the files to be deleted should match the pattern and all other files shouldn’t match the pattern.

Polycarp doesn’t know about an asterisk ‘*’, the only special character he knows is a question mark ‘?’ which matches any single character. All other characters in the pattern match themselves only.

Formally, a pattern matches a filename if and only if they have equal lengths and all characters in the corresponding positions are equal except when the character in the pattern is ‘?’, in which case the corresponding filename character does not matter.

For example, the filename pattern “a?ba?”:

matches filenames “aabaa”, “abba.”, “a.ba9” and “a.ba.”;
does not match filenames “aaba”, “abaab”, “aabaaa” and “aabaa.”.
Help Polycarp find a pattern which matches files to be deleted and only them or report if there is no such pattern.

Input

The first line of the input contains two integers n and m (1 ≤ m ≤ n ≤ 100) — the total number of files and the number of files to be deleted.

The following n lines contain filenames, single filename per line. All filenames are non-empty strings containing only lowercase English letters, digits and dots (‘.’). The length of each filename doesn’t exceed 100. It is guaranteed that all filenames are distinct.

The last line of the input contains m distinct integer numbers in ascending order a1, a2, …, am (1 ≤ ai ≤ n) — indices of files to be deleted. All files are indexed from 1 to n in order of their appearance in the input.

Output

If the required pattern exists, print “Yes” in the first line of the output. The second line should contain the required pattern. If there are multiple solutions, print any of them.

If the required pattern doesn’t exist, print the only line containing “No”.

Example
Input

3 2
ab
ac
cd
1 2

Output

Yes
a?

Input

5 3
test
tezt
test.
.est
tes.
1 4 5

Output

Yes
?es?

Input

4 4
a
b
c
dd
1 2 3 4

Output

No

Input

6 3
.svn
.git
….

..
.
1 2 3

Output

Yes
.???

本题题意是在给定字符串数组中删除给定序号的字符串,判断是否能用一个模式串删除,要注意在用模式串删除的过程中不能误删其它串。

源代码:
#include<iostream>
#include<string>
using namespace std;

int main(void)
{
    int n, m;
    cin>>n>>m;

    string s[n];
    for(int i = 0; i < n; i++)
        cin>>s[i];

    int a[m];
    for(int i = 0; i < m; i++)
        cin>>a[i];

    int flag = 1;
    for(int i = 0; i < m - 1 && flag == 1; i++)
        if(s[a[i] - 1].size() == s[a[i + 1] - 1].size())
            flag = 1;
        else
            flag = 0;


    if(flag == 0)   
        cout<<"No"<<endl;
    else
    {
        int mark = 0;
        int len = s[a[0] - 1].size();
        string pattern;
        pattern.assign(s[a[0] - 1]);
        for(int i = 1; i < m; i++)
            for(int j = 0; j < len; j++)
                if(pattern[j] != '?' && pattern[j] != s[a[i] - 1][j])
                    pattern[j] = '?';   

        for(int i=0, j=0; i<n; i++)
        {
            if(i == a[j]-1 && j<m)
            {
                j++;
            }
            else
            {
                if(s[i].size()==len)
                {
                    mark = 0;
                    for(int k=0; k<len; k++)
                    {
                        if(pattern[k]==s[i][k] || pattern[k]=='?')
                        {
                            mark++;
                        }
                        else
                        {
                            break;
                        }
                    }
                    if(mark == len )
                    {
                        cout<<"No";
                        return 0;
                    }
                }
            }
        }

        cout<<"Yes"<<endl;
        cout<<pattern;
        //for(int i = 0; i < len; i++)
            //cout<<pattern[i];     
    }       
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值