# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
886684 | vjudge1 | ZigZag (COCI17_zigzag) | C++17 | 2 ms | 496 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
//#define ONLINE_JUDGE
void solve() {
int n, q;
cin >> n >> q;
vector<string> v(n +1);
deque <int> dq[26];
for(int i = 1; i <= n; i++) {
cin >> v[i];
dq[v[i][0] - 'a'].emplace_back(i);
}
for(int i = 0; i < 26; i++) {
sort(dq[i].begin(), dq[i].end(), [&](const int a, const int b) -> bool {
string &x = v[a], &y = v[b];
for(int i = 0; i < min(x.size(), y.size()); i++) {
if(x[i] != y[i]) {
return x[i] < y[i];
}
}
return x.size() < y.size();
});
}
while(q--) {
char ch;
cin >> ch;
ch -= 'a';
cout << v[dq[ch].front()] << "\n";
dq[ch].push_back(dq[ch].front());
dq[ch].pop_front();
}
return;
}
signed main() {
#ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int t = 1; //cin >> t;
for(int i = 1; i <= t; i++) {
solve();
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |