任意门:http://acm.hdu.edu.cn/showproblem.php?pid=1298

T9

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3917    Accepted Submission(s): 1415

Problem Description
A while ago it was quite cumbersome to create a message for the Short Message Service (SMS) on a mobile phone. This was because you only have nine keys and the alphabet has more than nine letters, so most characters could only be entered by pressing one key several times. For example, if you wanted to type "hello" you had to press key 4 twice, key 3 twice, key 5 three times, again key 5 three times, and finally key 6 three times. This procedure is very tedious and keeps many people from using the Short Message Service.

This led manufacturers of mobile phones to try and find an easier way to enter text on a mobile phone. The solution they developed is called T9 text input. The "9" in the name means that you can enter almost arbitrary words with just nine keys and without pressing them more than once per character. The idea of the solution is that you simply start typing the keys without repetition, and the software uses a built-in dictionary to look for the "most probable" word matching the input. For example, to enter "hello" you simply press keys 4, 3, 5, 5, and 6 once. Of course, this could also be the input for the word "gdjjm", but since this is no sensible English word, it can safely be ignored. By ruling out all other "improbable" solutions and only taking proper English words into account, this method can speed up writing of short messages considerably. Of course, if the word is not in the dictionary (like a name) then it has to be typed in manually using key repetition again.


Figure 8: The Number-keys of a mobile phone.

More precisely, with every character typed, the phone will show the most probable combination of characters it has found up to that point. Let us assume that the phone knows about the words "idea" and "hello", with "idea" occurring more often. Pressing the keys 4, 3, 5, 5, and 6, one after the other, the phone offers you "i", "id", then switches to "hel", "hell", and finally shows "hello".

Write an implementation of the T9 text input which offers the most probable character combination after every keystroke. The probability of a character combination is defined to be the sum of the probabilities of all words in the dictionary that begin with this character combination. For example, if the dictionary contains three words "hell", "hello", and "hellfire", the probability of the character combination "hell" is the sum of the probabilities of these words. If some combinations have the same probability, your program is to select the first one in alphabetic order. The user should also be able to type the beginning of words. For example, if the word "hello" is in the dictionary, the user can also enter the word "he" by pressing the keys 4 and 3 even if this word is not listed in the dictionary.

 
Input
The first line contains the number of scenarios.

Each scenario begins with a line containing the number w of distinct words in the dictionary (0<=w<=1000). These words are given in the next w lines. (They are not guaranteed in ascending alphabetic order, although it's a dictionary.) Every line starts with the word which is a sequence of lowercase letters from the alphabet without whitespace, followed by a space and an integer p, 1<=p<=100, representing the probability of that word. No word will contain more than 100 letters.

Following the dictionary, there is a line containing a single integer m. Next follow m lines, each consisting of a sequence of at most 100 decimal digits 2-9, followed by a single 1 meaning "next word".

 
Output
The output for each scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1.

For every number sequence s of the scenario, print one line for every keystroke stored in s, except for the 1 at the end. In this line, print the most probable word prefix defined by the probabilities in the dictionary and the T9 selection rules explained above. Whenever none of the words in the dictionary match the given number sequence, print "MANUALLY" instead of a prefix.

Terminate the output for every number sequence with a blank line, and print an additional blank line at the end of every scenario.

 
Sample Input
2
5
hell 3
hello 4
idea 8
next 8
super 3
2
435561
43321
7
another 5
contest 6
follow 3
give 13
integer 6
new 14
program 4
5
77647261
6391
4681
26684371
77771
 
Sample Output
Scenario #1:
i
id
hel
hell
hello

i
id
ide
idea

Scenario #2:
p
pr
pro
prog
progr
progra
program

n
ne
new

g
in
int

c
co
con
cont
anoth
anothe
another

p
pr
MANUALLY
MANUALLY

 
Source

题意概括:

输入 N 个单词,每个单词有特定的频率。然后有 M 次访问,每次都是模拟九键电话,电话数字上有特定的字符,每次输入一串数字,联想到频率最高的单词前缀或者单词。

解题思路:

把单词存进字典树,然后暴力数字串所有可能构成的字符串,在这些字符串的基础下去匹配字典树里可能达到的最大频率,最后更新得出最大频率的前缀或者单词。

AC code:

 #include <bits/stdc++.h>
#define INF 0x3f3f3f3f
#define LL long long int
#define Bits 27
using namespace std; const int MAXN = ;
char str[MAXN], str_now[MAXN], str_ans[MAXN];
int node_cnt, N, M, ans_val;
struct Trie
{
Trie *next[Bits];
int v;
inline void it(const int value){
this->v = value;
for(int index = ; index < Bits; index++)
this->next[index] = NULL;
}
};
Trie *Root; char mmp[][]{
{'#', '#', '#', '#'},
{'#', '#', '#', '#'},
{'a', 'b', 'c', '#'},
{'d', 'e', 'f', '#'},
{'g', 'h', 'i', '#'},
{'j', 'k', 'l', '#'},
{'m', 'n', 'o', '#'},
{'p', 'q', 'r', 's'},
{'t', 'u', 'v', '#'},
{'w', 'x', 'y', 'z'},
};
void Create_Trie(char *str, int val)
{
int len_str = strlen(str);
Trie *p = Root, *temp;
for(int i = ; i < len_str; i++){
int index = str[i]-'a';
if(p->next[index] == NULL){
temp = (Trie *)malloc(sizeof(Trie));
temp->it(val);
p->next[index] = temp;
}
else (p->next[index]->v)+=val;
p = p->next[index];
}
}
inline void Deal_Trie(Trie *tp)
{
if(tp == NULL) return;
for(int i = ; i < Bits; i++)
{
if(tp->next[i] == NULL) continue;
Deal_Trie(tp->next[i]);
}
free(tp);return;
}
void slv(int now, int len, Trie *node)
{
if(now == len){
if(node->v > ans_val){
strcpy(str_ans, str_now);
ans_val = node->v;
}return;
}
int index = str[now]-'';
for(int i = ; i < ; i++){
if(mmp[index][i] == '#')break;
int id = mmp[index][i]-'a';
if(node->next[id]){
str_now[now] = mmp[index][i];
str_now[now+] = '\0';
slv(now+, len, node->next[id]);
}
}
}
int main()
{
int T_case, tpval;
scanf("%d", &T_case);
for(int ca = ; ca <= T_case; ca++){
scanf("%d", &N);
Root = (Trie *)malloc(sizeof(Trie));
Root->it();
for(int i = ; i <= N; i++){
scanf("%s %d", str, &tpval);
Create_Trie(str, tpval);
}
printf("Scenario #%d:\n", ca);
scanf("%d", &M);
while(M--){
scanf("%s", str);
int len = strlen(str);
for(int s = ; s < len; s++){
ans_val = -INF;
slv(, s, Root);
if(ans_val > -INF) puts(str_ans);
else puts("MANUALLY");
}
puts("");
}
puts("");Deal_Trie(Root);
}
return ;
}

HDU 1298 T9【字典树增加||查询】的更多相关文章

  1. HDU 1298 T9 ( 字典树 )

    题意 : 给你 w 个单词以及他们的频率,现在给出模拟 9 键打字的一串数字,要你在其模拟打字的过程中给出不同长度的提示词,出现的提示词应当是之前频率最高的,当然提示词不需要完整的,也可以是 w 个单 ...

  2. HDU 1298 T9 字典树+DFS

    必须要批评下自己了,首先就是这个题目的迟疑不定,去年做字典树的时候就碰到这个题目了,当时没什么好的想法,就暂时搁置了,其实想法应该有很多,只是居然没想到. 同样都是对单词进行建树,并插入可能值,但是拨 ...

  3. hdu 1298 T9(特里+DFS)

    pid=1298" target="_blank" style="">题目连接:hdu 1298 T9 题目大意:模拟手机打字的猜想功能.依据概 ...

  4. HDU 1298 T9(字典树+dfs)

    http://acm.hdu.edu.cn/showproblem.php?pid=1298 题意:模拟手机9键,给出每个单词的使用频率.现在给出按键的顺序,问每次按键后首字是什么(也就是要概率最大的 ...

  5. HDU 2846 Repository (字典树 后缀建树)

    Repository Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total ...

  6. POJ 1451 - T9 - [字典树]

    题目链接:http://bailian.openjudge.cn/practice/1451/ 总时间限制: 1000ms 内存限制: 65536kB 描述 Background A while ag ...

  7. hdu 1979 DFS + 字典树剪枝

    http://acm.hdu.edu.cn/showproblem.php?pid=1979 Fill the blanks Time Limit: 3000/1000 MS (Java/Others ...

  8. hdu 2846(字典树)

    Repository Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total ...

  9. HDU 1671 (字典树统计是否有前缀)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1671 Problem Description Given a list of phone number ...

随机推荐

  1. 使用urllib和http.cookiejar获取python老男孩学员成绩

    打开http://crm.oldboyedu.com/crm/grade/single/ 鼠标右键查看源代码,可以看到我们需要post的name.如下: 这里需要在post试提交token和searc ...

  2. cloudermanger安装时需要安装或彻底正确卸载再安装orcal-java7-installer、oracle-java7-set-default(ubuntu14.04版本)(图文详解)

    不多说,直接上干货! 安装orcal-java7-installer和oracle-java7-set-default 安装JDK1.7 (所有节点)CDH要求至少是Oracle JDK7,Ubunt ...

  3. tomcat修改域名和访问域名时去掉项目名

    打开tomcat安装目录,根据路径找到 server.xml   路径D:\apache-tomcat-7.0.70\conf\server.xml 打开后   找到这一段 <Connector ...

  4. 获取全球dns统计信息

    # -*- coding:UTF-8 -*- import requests, time import json from bs4 import BeautifulSoup as bp t3 = ti ...

  5. CheckBox 样式

    .cb td {             width: 100px;         } .cb label {             display: inline-block;          ...

  6. CssClass初步语法了解

    首先 创建Css有三种方法  这里面就不一一介绍了,主要说第二种 创建第二种Css样式表  要在标签<title><title>标签下面写 如: <style type= ...

  7. Java版多人聊天室

    server.java import java.io.*; import java.net.*; import java.text.SimpleDateFormat; import java.util ...

  8. DJango小总结二

    1.Django请求的生命周期    武彦涛:        路由系统 -> 试图函数(获取模板+数据=>渲染) -> 字符串返回给用户        2.路由系统    王腾:   ...

  9. 破解jar包5步搞定,jira7.9.2操作成功,附github代码库

    1,从要破解的程序中拷贝.jar包文件,运行1_jar.sh将其解压.以jira7.9.2为例: $install_dir\JIRA\atlassian-jira\WEB-INF\lib\atlass ...

  10. Android Activity中状态保存机制

    在Activity中保存用户的当前操作状态,如输入框中的文本,一般情况下载按了home键后,重新进入文本框中的东西会丢下,所以我们要保存当前页面信息,如在写短信的时候接到一个电话,那么当你接电话的时候 ...