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

PAT 甲级 A1042 (2019/01/24)

时间:2019-02-21 23:10:12      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:code   tran   nbsp   --   har   start   const   print   ons   

 1 #include <cstdio>
 2 const int N = 54;
 3 char Color[5] = {S, H, C, D, J};
 4 int start[N+1], trans[N+1], end[N+1];
 5 int main() {
 6     int n;
 7     scanf("%d",&n);
 8     for(int i = 1; i <= N; i++){
 9         start[i] = i;
10     }
11     for(int i = 1; i <= N; i++){
12         scanf("%d",&trans[i]);
13     }
14     for(int step = 0; step < n; step++){
15         for(int i = 1; i <= N; i++){
16             end[trans[i]] = start[i]; 
17         }
18         for(int i = 1; i <= N; i++){
19             start[i] = end[i]; 
20         }
21     }
22     for(int i = 1; i <=N; i++){
23         if(i != 1)
24             printf(" ");
25         start[i]--; 
26         printf("%c%d",Color[start[i]/13],start[i]%13+1);
27     }
28     return 0;
29 }

 

PAT 甲级 A1042 (2019/01/24)

标签:code   tran   nbsp   --   har   start   const   print   ons   

原文地址:https://www.cnblogs.com/zjsaipplp/p/10415748.html

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