# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772304 | tolbi | 고장난 휴대전화기 (COCI14_mobitel) | C++17 | 1 ms | 324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma optimize("Bismillahirrahmanirrahim")
//█▀█─█──█──█▀█─█─█
//█▄█─█──█──█▄█─█■█
//█─█─█▄─█▄─█─█─█─█
//Allahuekber
//ahmet23 orz...
//Sani buyuk Osman Pasa Plevneden cikmam diyor
//FatihSultanMehmedHan
//YavuzSultanSelimHan
//AbdulhamidHan
#define author tolbi
#include <bits/stdc++.h>
#define deci(x) int x;cin>>x;
#define decstr(x) string x;cin>>x;
#define int long long
#define vint(x) vector<int> x
#define endl '\n'
#define cinarr(x) for (auto &it : x) cin>>it;
#define coutarr(x) for (auto &it : x) cout<<it<<" ";cout<<endl;
#define sortarr(x) sort(x.begin(), x.end())
#define sortrarr(x) sort(x.rbegin(), x.rend())
#define revarr(x) reverse(x.begin(), x.rend())
#define ios ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define tol(x) (1ll<<((int)(bi)))
#define det(x) cout<<"NO\0YES"+((!!x)*3)<<endl;
#define INF LONG_LONG_MAX
using namespace std;
const int MOD = 1e9+7;
mt19937 ayahya(chrono::high_resolution_clock().now().time_since_epoch().count());
int32_t main(){
ios;
int T = 1;
if (!T) cin>>T;
int tno = 0;
while (T-(tno++)){
vint(arr(9));
cinarr(arr);
vector<int> pos(26);
vector<int> kac(26);
for (int i = 0; i < 18; ++i)
{
pos[i]=i/3+2;
kac[i]=i%3+1;
}
pos[18]=7;
kac[18]=4;
pos[19]=pos[20]=pos[21]=8;
kac[19]=1,kac[20]=2,kac[21]=3;
pos[22]=pos[23]=pos[24]=pos[25]=9;
kac[22]=1,kac[23]=2,kac[24]=3,kac[25]=4;
decstr(str);
vector<int> yer(9);
for (int i = 0; i < 9; ++i)
{
yer[arr[i]-1]=i+1;
}
for (int i = 0; i < pos.size(); ++i)
{
pos[i]=yer[pos[i]-1];
}
int lel = -1;
string ans = "";
for (int i = 0; i < str.length(); ++i)
{
int crr = pos[str[i]-'a'];
if (crr==lel){
ans+='#';
}
lel=crr;
char ch = to_string(crr)[0];
for (int j = 0; j < kac[str[i]-'a']; j++){
ans+=ch;
}
}
cout<<ans<<endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |