首页 > 其他 > 详细

POJ 3617 Best Cow Line 字典序最小

时间:2020-01-31 19:01:03      阅读:69      评论:0      收藏:0      [点我收藏+]
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<queue>
 5 #include<map>
 6 #include<vector>
 7 #include<set>
 8 #include<string>
 9 #include<cmath>
10 #include<cstring>
11 using namespace std;
12 int main()
13 {
14     int n;
15     scanf("%d",&n);
16     char str[2010];
17     for(int i=0;i<n;i++)
18     {
19         getchar();
20         str[i]=getchar();    
21     } 
22 //    cout<<str<<endl;
23     int start=0,end=n-1;
24     int cnt=0;
25     while(start<=end)
26     {
27         bool left=false;
28         for(int i=0;start+i<=end;i++)
29         {
30             if(str[start+i]<str[end-i])
31             {
32                 left=true;
33                 break;
34             }
35             else if(str[start+i]>str[end-i])
36             {
37                 left=false;
38                 break;
39             }
40         }
41         if(left)
42             putchar(str[start++]);
43         else
44             putchar(str[end--]);    
45         cnt++;
46         if(cnt%80==0)    
47             putchar(\n);    
48     }
49     return 0;
50 }

 

POJ 3617 Best Cow Line 字典序最小

原文:https://www.cnblogs.com/fudanxi/p/12245780.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!