# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
886686 | vjudge1 | ZigZag (COCI17_zigzag) | C++17 | 81 ms | 10836 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sp << " " <<
#define int long long
#define vi vector<int>
#define F(xxx,yyy) for (int xxx=1;xxx<=yyy;xxx++)
#define pii pair<int,int>
#define pb push_back
const int N = 2e5+1;
const int inf = 1e9+1;
void solve() {
int n,q;
cin >> n >> q;
set<pair<int,string>> ss[26];
F(i,n) {
string s;
cin >> s;
ss[s[0]-'a'].insert({0,s});
}
while (q--) {
char c;
cin >> c;
auto it = ss[c-'a'].begin();
cout << it->second << '\n';
int x = it->first;
ss[c-'a'].insert({x+1,it->second});
ss[c-'a'].erase(it);
}
}
signed main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#ifdef Local
freopen("in","r",stdin);
freopen("out","w",stdout);
#endif
int t = 1;
//cin >> t;
F(i,t) solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |