mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
34 lines
619 B
C++
34 lines
619 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
int n, m, q, x, book;
|
|
std::vector<int> a;
|
|
std::string s, books[100205];
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin >> n;
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> s;
|
|
books[++book] = s;
|
|
a.push_back(book);
|
|
}
|
|
cin >> m;
|
|
for (int i = 1; i <= m; i++) {
|
|
cin >> s >> x;
|
|
books[++book] = s;
|
|
a.insert(a.begin() + x, book);
|
|
}
|
|
cin >> q;
|
|
while (q--) {
|
|
cin >> x;
|
|
cout << books[a[x]] << endl;
|
|
}
|
|
return 0;
|
|
}
|