1002 Phone Numbers 解题报告
1002. Phone Numbers
Memory limit: 64 MB
1 ij 2 abc 3 def |
Input
Output
No solution.
”. If there are more solutions having the minimum number of words, you can choose any single one of them.Sample
input | output |
---|---|
7325189087 |
reality our |
//
// main.cpp
// phoneNumber2
//
// Created by apple on 16/1/30.
// Copyright © 2016年 apple. All rights reserved.
// #include <iostream>
#include <vector>
#include <stack>
#include <map>
//数字串长度
#define maxl 1000
//单词个数
#define maxn 100
//最多单词数
#define maxw 100
//最大值
#define inf 100000 using namespace std;
struct node {
node(int a, int b, bool v) {
fa = a;
wn = b;
vrfd = v;
}
node () {
vrfd = false;
}
int fa, wn;
bool vrfd;
};
//每个长度对应的最少单词数,初始化为inf
int f[maxl+];
//每个长度对应最少单词数的单词编号队
node lw[maxl+];
//单词们
vector<string> words;
stack<int> ans;
string num;
map<char, char> phone; int match(int pl, int wn) {
for (int i = ; i < words[wn].length(); i++) {
if (pl == num.length() || phone[words[wn][i]] != num[pl])
return -;
pl++;
}
return pl;
}
int main(int argc, const char * argv[]) {
phone['o'] = phone['q'] = phone['z'] = '';
phone['w'] = phone['x'] = phone['y'] = '';
phone['t'] = phone['u'] = phone['v'] = '';
phone['p'] = phone['r'] = phone['s'] = '';
phone['m'] = phone['n'] = '';
phone['k'] = phone['l'] = '';
phone['g'] = phone['h'] = '';
phone['d'] = phone['e'] = phone['f'] = '';
phone['a'] = phone['b'] = phone['c'] = '';
phone['i'] = phone['j'] = '';
int wn, i, j, tmp1;
string tmp;
lw[] = node(-, -, true);
while (cin >> num && num != "-1") {
words.clear();
cin >> wn;
while (wn--) {
cin >> tmp;
words.push_back(tmp);
}
f[] = ;
for (i = ; i <= maxl; i++) {
f[i] = inf;
}
for (i = ; i <= maxl; i++) {
lw[i] = node(-,-,false);
}
for (i = ; i < num.length(); i++) {
for (j = ; j < words.size(); j++) {
if (lw[i].vrfd && (tmp1 = match(i, j)) != - && f[tmp1] > f[i]+) {
f[tmp1] = f[i] + ;
lw[tmp1] = node(i, j, true);
}
}
}
if (!lw[num.length()].vrfd) {
cout << "No solution." << endl;
} else {
int itr = num.length();
while (itr != ) {
ans.push(lw[itr].wn);
itr = lw[itr].fa;
}
while (ans.size() != ) {
cout << words[ans.top()] << " ";
ans.pop();
}
cout << words[ans.top()] << endl;
ans.pop();
}
}
}
1002 Phone Numbers 解题报告的更多相关文章
- 【九度OJ】题目1442:A sequence of numbers 解题报告
[九度OJ]题目1442:A sequence of numbers 解题报告 标签(空格分隔): 九度OJ 原题地址:http://ac.jobdu.com/problem.php?pid=1442 ...
- 【LeetCode】129. Sum Root to Leaf Numbers 解题报告(Python)
[LeetCode]129. Sum Root to Leaf Numbers 解题报告(Python) 标签(空格分隔): LeetCode 题目地址:https://leetcode.com/pr ...
- 【LeetCode】386. Lexicographical Numbers 解题报告(Python)
[LeetCode]386. Lexicographical Numbers 解题报告(Python) 标签(空格分隔): LeetCode 作者: 负雪明烛 id: fuxuemingzhu 个人博 ...
- 【LeetCode】165. Compare Version Numbers 解题报告(Python)
[LeetCode]165. Compare Version Numbers 解题报告(Python) 标签(空格分隔): LeetCode 作者: 负雪明烛 id: fuxuemingzhu 个人博 ...
- USACO Section2.2 Runaround Numbers 解题报告 【icedream61】
runround解题报告---------------------------------------------------------------------------------------- ...
- [POJ 1002] 487-3279 C++解题报告
487-3279 Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 228365 Accepted: 39826 D ...
- 【LeetCode】1022. Sum of Root To Leaf Binary Numbers 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 DFS 日期 题目地址:https://leetco ...
- 【LeetCode】628. Maximum Product of Three Numbers 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 方法一:排序 日期 题目地址:https://lee ...
- 洛谷 CF55D Beautiful numbers 解题报告
CF55D Beautiful numbers 题意 \(t(\le 10)\)次询问区间\([l,r](1\le l\le r\le 9\times 10^{18})\)中能被每一位上数整除的数的个 ...
随机推荐
- css3新特性
1.css3选择器 我们所定义的 CSS 属性之所以能应用到相应的节点上,就是因为 CSS 选择器模式.参考下述代码: Body > .mainTabContainer div > s ...
- MySQL支持的数据类型(2)( 日期)
日期和时间类型 字节 最小值 最大值 date 4 1000-01-01 9999-12-31 datetime 8 1000-01-01 00:00:00 9999-12-31 23:59:59 t ...
- 解决IE(IE6/IE7/IE8)不兼容HTML5标签的方法
方式一:Coding JavaScript <!--[if lt IE9]> <script> (function() { var e = "abbr, articl ...
- shFlags简介
看到有脚本中使用了shFlags,于是google了一下,发现还是个挺方便的东西. https://github.com/kward/shflags/wiki/Documentation12x sha ...
- 多个Excel文件快速导入到DB里面
1 . 文件比较多,需要把这么多的数据都导入到DB里面,一个个导入太慢了,能想到的是先把数据整个到一个Excel中,然后再导入 2. 第一步准备合并Excel,新建一个新的excel,命名为total ...
- 几何服务,cut功能,输入要素target(修改前)内容。
几何服务,cut功能测试,输入要素target(修改前)内容. {"geometryType":"esriGeometryPolyline","geo ...
- Android 操作系统的内存回收机制(转载)
Android 操作系统的内存回收机制(转载) Android APP 的运行环境 Android 是一款基于 Linux 内核,面向移动终端的操作系统.为适应其作为移动平台操作系统的特殊需要,谷歌对 ...
- erlang调试之JCL
Job control mode (JCL), in which jobs can be started, stopped, detached or connected. Only the curre ...
- hive --service metastore 出现的问题
Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083 执行命令jps root@hadoopm:/usr# jps1763 Res ...
- sublime text3配置node.js开发环境
今天配置sublime下node.js网上搜索很多方法. 首先:传统的方法是 1.GIT方法 可直接输入 Git clone https://github.com/tanepiper/SublimeT ...