-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor_with_occurences.cpp
74 lines (74 loc) · 1.71 KB
/
color_with_occurences.cpp
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
#include <bits/stdc++.h>
using namespace std;
int ans;
void finder(int starter, int maxer, string &text, vector<string> &words, vector<pair<int, int>> &match)
{
int maxx = 0, id = -1, pos = -1;
for (int i = starter; i <= maxer; i++)
{
for (int j = 0; j < words.size(); j++)
{
string word = words[j];
if (i + word.length() > text.length() || i + word.length() <= maxer)
continue;
else if (text.substr(i, word.size()) == word)
{
if (i + word.length() > maxx)
{
maxx = i + word.length();
id = j;
pos = i;
}
}
}
}
if (id == -1)
{
ans = -1;
return;
}
else
{
match.push_back(make_pair(pos, id));
ans++;
if (maxx == text.length())
return;
else
finder(starter + 1, maxx, text, words, match);
}
}
int main()
{
int cases;
cin >> cases;
for (int i = 0; i < cases; i++)
{
ans = 0;
string text;
cin >> text;
int n;
cin >> n;
vector<string> words;
vector<pair<int, int>> match;
for (int j = 0; j < n; j++)
{
string st;
cin >> st;
words.push_back(st);
}
finder(0, 0, text, words, match);
if (ans == -1)
{
cout << -1<<endl;
continue;
}
else
{
cout << ans << endl;
for (int j = 0; j < ans; j++)
{
cout << match[j].second + 1 << " " << match[j].first + 1 << endl;
}
}
}
}