紫书第十章(10.2.3)编码与解码 ---Password(暴力枚举)
Posted KingZhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了紫书第十章(10.2.3)编码与解码 ---Password(暴力枚举)相关的知识,希望对你有一定的参考价值。
题意:
给两个6行5列的字母矩阵,找出满足如下条件的“密码”:密码中的每个字母在两个矩阵的对应列中均出现。给定k(1<=k<=7777),你的任务是找出字典序第k小的密码。如果不存在,输出NO。
思路:
因为k<=7777所以直接dfs从最小的开始找即可.
char ch[2][6][5], ans[maxn];
ll cnt, k, n, m,tot;
bool dfs(ll num)
{
if(num == 5)
{
if(++cnt == k)
{
ans[num] = \'\\0\';
return true;
}
return false;
}
int vis[2][26];
memset(vis, 0, sizeof vis);
for(int i = 0; i < 2; i++)
{
for(int j = 0; j < 6; j++)
{
vis[i][ch[i][j][num] - \'A\'] = 1;
}
}
for(int i = 0; i < 26; i++)
{
if(vis[0][i] && vis[1][i])
{
ans[num] = \'A\' + i;
if(dfs(num + 1))return true;
}
}
return false;
}
void solve()
{
cnt=0;
scanf("%lld",&k);
for(int i=0;i<2;i++){
for(int j=0;j<6;j++){
scanf("%s",ch[i][j]);
}
}
if(!dfs(0)){
puts("NO");
}else {
cout<<ans<<endl;
}
}
以上是关于紫书第十章(10.2.3)编码与解码 ---Password(暴力枚举)的主要内容,如果未能解决你的问题,请参考以下文章
紫书第五章训练 uva 10763 Foreign Exchange by crq
紫书第五章训练 uva 10391 Compound Words by crq