# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
650851 | edogawa_something | 고장난 휴대전화기 (COCI14_mobitel) | C++14 | 1 ms | 464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef long double ld;
typedef string st;
typedef bool bl;
typedef vector<ll> vii;
typedef pair<ll,ll> pii;
typedef vector<pii> vpi;
#define pu push
#define ordered_set tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>
#define fast ios_base::sync_with_stdio(0);cin.tie();
#define test ll qqqqq;cin>>qqqqq;while(qqqqq--)
#define F first
#define S second
#define forn(i,n) for(ll i=0;i<n;i++)
#define forx(i,j,n) for(ll i=j;i<n;i++)
#define pb push_back
#define pob pop_back
#define all(v) v.begin(),v.end()
#define lb lower_bound
#define ub upper_bound
#define pof pop_front
const ll dx[]{1,0,-1,0};
const ll dy[]{0,1,0,-1};
const ll inf=2e18;
const ll mod=1e9+7;
const ll M=1e6+1;
const ll MM=10002;
const ll MMM=101;
const ld pi=acos(-1);
const ll mod1=1000000321;
st s;
ll p[M],per[M];
map<char,ll>mp,mpp;
int main(){
fast
forn(i,9)
cin>>p[i];
forn(i,9){
forn(j,9){
if(p[j]==i+1)
per[i+1]=j+1;
}
}
cin>>s;
for(char a='a';a<='r';a++){
mp[a]=min(9,((a-'a')/3)+2);
mpp[a]=(a-'a')%3;
}
mp['s']=7,mpp['s']=3;
mp['t']=8,mpp['t']=0;
mp['u']=8,mpp['u']=1;
mp['v']=8,mpp['v']=2;
mp['w']=9,mpp['w']=0;
mp['x']=9,mpp['x']=1;
mp['y']=9,mpp['y']=2;
mp['z']=9,mpp['z']=3;
forn(i,s.size()){
if(i>0&&mp[s[i]]==mp[s[i-1]])
cout<<'#';
forn(j,mpp[s[i]]+1)
cout<<per[mp[s[i]]];
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |