| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1104285 | overwatch9 | ZigZag (COCI17_zigzag) | C++17 | 52 ms | 12872 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;
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n, m;
    cin >> n >> m;
    map <char, queue <string>> mp;
    vector <string> names(n);
    for (int i = 0; i < n; i++) {
        cin >> names[i];
    }
    sort(names.begin(), names.end());
    for (int i = 0; i < n; i++)
        mp[names[i][0]].push(names[i]);
    for (int i = 0; i < m; i++) {
        char s;
        cin >> s;
        cout << mp[s].front() << '\n';
        string tp = mp[s].front();
        mp[s].pop();
        mp[s].push(tp);
    }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
