SRM 599 DIV2 950

本文解析了一道TopCoder上的算法题目,该题涉及字符串匹配和排列组合的知识,通过分析名字列表中名字的前缀关系来确定原始顺序的可能性。


太弱了。。。。这么简单的题也只能比赛之后写。。。。。

roblem Statement

Fox Ciel has a list of names on her computer. In this problem, a name is simply a non-empty string of lowercase letters. All names in her list are distinct.

One day, when she left her seat, she forgot to lock her computer. Then, Lun the mischievous dog appeared, and randomly shuffled the order of the names in her list.

Now, Ciel has to restore the original order of names using her memory. You are given a vector <string>namesand an intL.namescontains all names in the shuffled list in the order they appear.Ldescribes Ciel's memory of the original list. She remembers that, for each i between 0 andL-2, inclusive, the i-th (0-indexed) name in the original list was a prefix of the (i+1)-th name.

Let X be the number of possible orders of the names in the original list that are consistent with Ciel's memory. Calculate and return the value (X modulo 1,000,000,007). X can be 0, which means Ciel's memory is inconsistent with the names in the list.

Definition

Class:SimilarNames2
Method:count
Parameters:vector <string>, int
Returns:int
Method signature:int count(vector <string> names, int L)
(be sure your method is public)

Notes

-A prefix of a string is the result of erasing zero or more characters from the right end of that string.

Constraints

- nameswill contain between 2 and 50 elements, inclusive.
-Each element ofnameswill contain between 1 and 50 characters, inclusive.
-Each character of each element ofnameswill be a lowercase letter ('a'-'z').
-Elements ofnameswill be distinct.
- Lwill be between 1 and n, inclusive, where n is the number of elements innames.

Examples

0)
{"kenta", "kentaro", "ken"}
2
Returns: 3
Here, Ciel's list contains 3 names. She remembers that the 0-th name was a prefix of the 1-st name in the original list. Here are the all possible orders of names in the original list:
  • ken, kenta, kentaro
  • ken, kentaro, kenta
  • kenta, kentaro, ken
Note that it is possible that the order of the names in the original list coincides with that of the shuffled list.
1)
{"hideo", "hideto", "hideki", "hide"}
2
Returns: 6
Again, she remembers that the 0-th name was a prefix of the 1-st name in the original list. The only thing we can be sure is that the 0-th name was "hide".
2)
{"aya", "saku", "emi", "ayane", "sakura", "emika", "sakurako"}
3
Returns: 24
This time, she remembers not only the fact that the 0-th name was a prefix of the 1-st name, but also the fact that the 1-st name was a prefix of the 2-nd name. The first 3 names should be "saku", "sakura", "sakurako" in this order.
3)
{"taro", "jiro", "hanako"}
2
Returns: 0
No name is a prefix of another name in this case, so her memory is inconsistent.
4)
{"alice", "bob", "charlie"}
1
Returns: 6
L= 1 means that she actually remembers nothing.
5)
{"ryota", "ryohei", "ryotaro", "ryo", "ryoga", "ryoma", "ryoko", "ryosuke", "ciel", "lun", "ryuta", "ryuji", "ryuma", "ryujiro", "ryusuke", "ryutaro", "ryu", "ryuhei", "ryuichi", "evima"}
3
Returns: 276818566

This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.

#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <cstring>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>

using namespace std;

const int MOD=1000000007;
int qianzui[100];
int Com[60][60];

void getCom()
{
    Com[0][0]=1;
    for(int i=1;i<=50;i++) Com[i][i]=Com[0][i]=1;
    for(int i=2;i<=50;i++)
    {
        for(int j=1;j<i;j++)
        {
            Com[j][i]=(Com[j-1][i-1]+Com[j][i-1])%MOD;
        }
    }
}

int getC(int l,int z)
{
    if(l>z) return 0;
    if(l==0||l==z) return 1;
    return Com[l][z];
}

class SimilarNames2 {
public:
	int count(vector <string> names, int L)
	{
	    getCom();
	    int n=names.size();
	    memset(qianzui,0,sizeof(qianzui));
	    sort(names.begin(),names.end());
	    ///预处理前缀
	    for(int i=1;i<n;i++)
        {
            int len2;
            for(int j=0;j<i;j++)
            {
                len2=names[j].size();
                if(names[i].substr(0,len2)==names[j])
                {
                    qianzui[i]=max(qianzui[j]+1,qianzui[i]);
                }
            }
        }
        long long int ans=0;
        for(int i=0;i<n;i++)
        {
            ans=(ans+getC(L-1,qianzui[i]))%MOD;
        }
        for(int i=2;i<=n-L;i++)
        {
            ans=(ans*i)%MOD;
        }
        return ans%MOD;
	}
};


///<%:testing-code%>
//Powered by KawigiEdit 2.1.4 (beta) modified by pivanof!
// BEGIN KAWIGIEDIT TESTING




提供了一个基于51单片机的RFID门禁系统的完整资源文件,包括PCB图、原理图、论文以及源程序。该系统设计由单片机、RFID-RC522频射卡模块、LCD显示、灯控电路、蜂鸣器报警电路、存储模块和按键组成。系统支持通过密码和刷卡两种方式进行门禁控制,灯亮表示开门成功,蜂鸣器响表示开门失败。 资源内容 PCB图:包含系统的PCB设计图,方便用户进行硬件电路的制作和调试。 原理图:详细展示了系统的电路连接和模块布局,帮助用户理解系统的工作原理。 论文:提供了系统的详细设计思路、实现方法以及测试结果,适合学习和研究使用。 源程序:包含系统的全部源代码,用户可以根据需要进行修改和优化。 系统功能 刷卡开门:用户可以通过刷RFID卡进行门禁控制,系统会自动识别卡片并判断是否允许开门。 密码开门:用户可以通过输入预设密码进行门禁控制,系统会验证密码的正确性。 状态显示:系统通过LCD显示屏显示当前状态,如刷卡成功、密码错误等。 灯光提示:灯亮表示开门成功,灯灭表示开门失败或未操作。 蜂鸣器报警:当刷卡或密码输入错误时,蜂鸣器会发出报警声,提示用户操作失败。 适用人群 电子工程、自动化等相关专业的学生和研究人员。 对单片机和RFID技术感兴趣的爱好者。 需要开发类似门禁系统的工程师和开发者。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值