-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathauto.cpp
61 lines (54 loc) · 1.38 KB
/
auto.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
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
#include <cassert>
using namespace std;
#define FOR(i, a, b) for (int i=a; i<(b); i++)
#define F0R(i, a) for (int i=0; i<(a); i++)
#define FORd(i,a,b) for (int i = (b)-1; i >= a; i--)
#define F0Rd(i,a) for (int i = (a)-1; i >= 0; i--)
#define INF 1100000000
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define pb push_back
#define PI acos(-1.0)
#define ll long long
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int main() {
freopen("auto.in", "r", stdin);
freopen("auto.out", "w", stdout);
int w, n; cin >> w >> n;
map<string, int> pos;
string words[w]; F0R(i, w) { cin >> words[i]; pos.insert(mp(words[i], i+1)); }
sort(words, words+w);
F0R(i, n) {
int k; string word;
cin >> k >> word;
auto it = lower_bound(words, words+w, word);
it += k-1;
if (it-words >= w || strncmp(it->c_str(), word.c_str(), word.size()) != 0) {
cout << "-1" << endl;
} else {
cout << pos[*it] << endl;
}
}
return 0;
}