# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
681844 | Vladth11 | ZigZag (COCI17_zigzag) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#define debug(x) cerr << #x << " " << x << "\n"
#define debugs(x) cerr << #x << " " << x << " "
using namespace std;
typedef pair <int, int> pii;
typedef long long ll;
const int NMAX = 100001;
const int VMAX = 41;
const int INF = 1e9;
const int MOD = 1000000009;
const int BLOCK = 318;
const int base = 31;
const int nrbits = 21;
vector <int> v[2][27];
string s[NMAX];
string org[NMAX];
int indice[27];
int main() {
#ifdef HOME
ifstream cin(".in");
ofstream cout(".out");
#endif // HOME
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, m, i, maxim = 0;
cin >> n >> m;
for(i = 1; i <= n; i++){
cin >> s[i];
org[i] = s[i];
for(int j = 0; j < s[i].size(); j++) s[i]++;
maxim = max(maxim, (int)s[i].size());
}
for(i = 1; i <= n; i++){
while(s[i].size() < maxim){
s[i] += 'a';
}
}
maxim--;
for(i = 1; i <= n; i++)
v[1 - (maxim%2)][0].push_back(i);
for(i = maxim; i >= 0; i--){
int act = i%2;
int last = 1 - act;
for(int j = 0; j < 27; j++){
for(auto x : v[last][j]){
v[act][s[x][i] - 'a'].push_back(x);
}
v[last][j].clear();
}
}
while(m--){
char c;
int ind;
cin >> c;
ind = c - 'a';
ind--;
cout << org[v[0][ind][indice[ind]]] << "\n";
indice[ind]++;
if(indice[ind] == v[0][ind].size()) indice[ind] = 0;
}
return 0;
}