码迷,mamicode.com
首页 > 其他好文 > 详细

潜伏者

时间:2019-09-25 00:47:36      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:mes   href   string   highlight   fail   cst   clu   org   str   

题面

水题喜加一

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
string x,y,z;
int c[27],s=0;
bool f[27],t[27];
int main()
{
    memset(c,0,sizeof(c));
    memset(f,false,sizeof(f));
    memset(t,false,sizeof(t));
    cin>>x>>y>>z;
    for(int i=0;i<x.size();++i)
    {
        if(!f[x[i]-‘A‘+1]&&!t[y[i]-‘A‘+1])
        {
            c[x[i]-‘A‘+1]=y[i];
            f[x[i]-‘A‘+1]=t[y[i]-‘A‘+1]=true;
            ++s;    
        }    
        else if(c[x[i]-‘A‘+1]!=y[i])
        {
            cout<<"Failed";
            return 0;    
        }
    }
    if(s!=26)
    {
        cout<<"Failed";
            return 0;    
    }
    for(int i=0;i<z.size();++i)
    {
        printf("%c",c[z[i]-‘A‘+1]);    
    }
}    

  

潜伏者

标签:mes   href   string   highlight   fail   cst   clu   org   str   

原文地址:https://www.cnblogs.com/ainiyuling/p/11581853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!