-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaoj1227.cpp
More file actions
104 lines (97 loc) · 2.09 KB
/
aoj1227.cpp
File metadata and controls
104 lines (97 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
using namespace std;
#define REP(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(i,a,b) for(int i = a; i < (int)b; i++)
#define pb push_back
#define mp make_pair
typedef vector<int> vi;
typedef pair<int, int> pi;
typedef long long ll;
const int INF = 1<<28;
const ll MOD = 1000000007;
const int dx[] = {1, 0, -1, 0}, dy[] = {0, 1, 0, -1};
char to_Num(char in) {
if(in == 'a' || in == 'b' || in == 'c')
return '2';
if(in == 'd' || in == 'e' || in == 'f')
return '3';
if(in == 'g' || in == 'h' || in == 'i')
return '4';
if(in == 'j' || in == 'k' || in == 'l')
return '5';
if(in == 'm' || in == 'n' || in == 'o')
return '6';
if(in == 'p' || in == 'q' || in == 'r' || in == 's')
return '7';
if(in == 't' || in == 'u' || in == 'v')
return '8';
if(in == 'w' || in == 'x' || in == 'y' || in == 'z')
return '9';
return -1;
}
vector< vector<string> > ans;
multimap<string, string> dic;
string in;
void dfs(int s, int cnt, vector<string> v) {
if(s+cnt > in.size())
return;
dfs(s, cnt+1, v);
if(dic.count(in.substr(s, cnt))) {
auto range = dic.equal_range(in.substr(s, cnt));
for(auto it = range.first; it != range.second; it++) {
vector<string> v2(v);
v2.pb(it->second);
if(s+cnt == in.size())
ans.pb(v2);
else
dfs(s+cnt, 1, v2);
}
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
while(cin >> n, n) {
ans.clear(); dic.clear();
REP(i, n) {
cin >> in;
string s;
REP(j, in.size())
s += to_Num(in[j]);
dic.insert(mp(s, in));
}
cin >> in;
dfs(0, 1, vector<string>());
REP(i, ans.size()) {
bool flg = false;
REP(j, ans[i].size()) {
if(flg) cout << ' ';
flg = true;
cout << ans[i][j];
}
cout << '.' << endl;
}
cout << "--" << endl;
}
return 0;
}