# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
153758 | BabinSinko | Tavan (COCI16_tavan) | C++14 | 3 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cctype>
#include <ctime>
#include <string.h>
#include <algorithm>
using namespace std;
long long n, m, k, x, nm, a, l;
string s, sc;
char c[503][29];
int main(){
cin >> n >> m >> k >> x;
cin >> s;
for (int i = 0; i < m; i++){
cin >> sc;
strcpy(c[i], sc.c_str());
sort(c[i], c[i] + k);
}
a = x;
l = s.length();
for (int i = 0; i < l; i++){
if (s[i] == '#'){
s[i] = c[nm][(a % (k + 1)) - 1];
a = a / (k+1);
nm = nm + 1;
}
}
cout << s;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |