码迷,mamicode.com
首页 > 系统相关 > 详细

1042 Shuffling Machine (20 分)

时间:2021-02-15 12:40:01      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:end   str   ring   cout   lse   i++   for   ons   ++   

模拟题。

const int N=55;
string mp[]={"S","H","C","D","J"};
string s[N];
string t[N];
int p[N];
int n;
int cnt;

void init()
{
    for(int i=0;i<4;i++)
        for(int j=1;j<=13;j++)
            s[cnt++]=mp[i]+to_string(j);
    s[cnt++]=mp[4]+‘1‘;
    s[cnt++]=mp[4]+‘2‘;
}

int main()
{
    init();

    cin>>n;

    for(int i=0;i<cnt;i++) cin>>p[i],p[i]--;

    while(n--)
    {
        for(int i=0;i<cnt;i++) t[i]=s[i];

        for(int i=0;i<cnt;i++) s[p[i]]=t[i];
    }

    for(int i=0;i<cnt;i++)
        if(i) cout<<‘ ‘<<s[i];
        else cout<<s[i];
    cout<<endl;
    //system("pause");
    return 0;
}

1042 Shuffling Machine (20 分)

标签:end   str   ring   cout   lse   i++   for   ons   ++   

原文地址:https://www.cnblogs.com/fxh0707/p/14398222.html

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