poj 3617 Best Cow Line
http://poj.org/problem;jsessionid=F0726AFA441F19BA381A2C946BA81F07?id=3617
Description
FJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annual"Farmer of the Year" competition. In this contest every farmer arranges his cows in a line and herds them past the judges.
The contest organizers adopted a new registration scheme this year: simply register the initial letter of every cow in the order they will appear (i.e., If FJ takes Bessie, Sylvia, and Dora in that order he just registers BSD). After the registration phase ends, every group is judged in increasing lexicographic order according to the string of the initials of the cows' names.
FJ is very busy this year and has to hurry back to his farm, so he wants to be judged as early as possible. He decides to rearrange his cows, who have already lined up, before registering them.
FJ marks a location for a new line of the competing cows. He then proceeds to marshal the cows from the old line to the new one by repeatedly sending either the first or last cow in the (remainder of the) original line to the end of the new line. When he's finished, FJ takes his cows for registration in this new order.
Given the initial order of his cows, determine the least lexicographic string of initials he can make this way.
Input
* Line 1: A single integer: N
* Lines 2..N+1: Line i+1 contains a single initial ('A'..'Z') of the cow in the ith position in the original line
Output
The least lexicographic string he can make. Every line (except perhaps the last one) contains the initials of 80 cows ('A'..'Z') in the new line.
Sample Input
6
A
C
D
B
C
B
Sample Output
ABCBCD 这个题说的是一个人有一群牛,要去参加比赛,每头牛都有名字,报名的时候只登记名字的首字母,但是这个人比赛当天有急事要回去,所以就想先比赛,而比赛是按字典序来安排的,所以它的字典序越小就越靠
前,这个人要组成一个比较小的字符串,他可以把原来的字符串的头部删除放在新的字符串的末尾,也可以把原来字符串的尾部删除放在新的的尾部,大致就是这个意思
然后书上说只要前面的比较小就行,然后就是不断地取开头和末尾放在新的字符串的尾部,
书上还说,字典序比较S和反转后的字符串S‘,如果S比较小就从S的开头取一个字符,如果S’的比较小,就取S‘的
但是!!!!我理解错了啊!!!我理解成一个字符串反转,然后对于每一个进行比较,较小的拿出来
就是 ACDBCB
反转后 BCBDCA
然后A跟B比,A比较小,就取A,C跟C比,取C,D跟B比取B,然后就得到了ACBBCA,哎,我还一直纠结为什么答案不对
#include<cstdio>
int main()
{
int n;
char s[2000],c[2000];
char t[2000];
scanf("%d",&n);
getchar();//输入%d(也就是数字)后面肯定有回车或者空格你要打,那么缓冲区就有\n或者空格字符遗留,%c 读取是从缓冲区读取的,那么优先读取的是\n,就错了,getchar()读掉遗留的就行了
for(int i=0;i<n;i++)
{
scanf("%c",&s[i]);
}
for(int i=n-1;i>=0;i--)
{
c[n-i-1]=s[i];//这个我测试的时候一直输出少一个,原来是因为getchar()
}
for(int i=0;i<n;i++)
{
if(s[i]<=c[i])
t[i]=s[i];
if(s[i]>c[i])
t[i]=c[i];
}
for(int i=0;i<n;i++)
printf("%c",t[i]);
printf("\n");
return 0;
}
虽然写了一大堆,但是不对,不过没关系,至少是自己写的啊
#include<cstdio>
int main()
{
int n;
char s[2000];
scanf("%d",&n);
getchar();//输入%d(也就是数字)后面肯定有回车或者空格你要打,那么缓冲区就有\n或者空格字符遗留,%c 读取是从缓冲区读取的,那么优先读取的是\n,就错了,getchar()读掉遗留的就行了
for(int i=0;i<n;i++)
{
scanf("%c",&s[i]);
}
int a=0,b=n-1;
while(a<=b)
{
bool left=false;
for(int i=0;a+i<=b;i++)
{
if(s[i+a]<s[b-i])
{
left=true;
break;
}
else if(s[a+i]>s[b-i])
{
left=false;
break;
}
}
if(left)
putchar(s[a++]);
else
putchar(s[b--]);
}
putchar('\n');
return 0;
}这个按书上打的计较不行,presentation error
这个我感觉主要是Every line (except perhaps the last one) contains the initials of 80 cows ('A'..'Z') in the new line的问题
然后我就上网查了别人的代码,但是现在有事,明天再补,我习惯想到一点补一点,以前没人看,我怎样写都无所谓,但是现在有人看了,还是谨慎一点吧
果然就是那个问题
#include<cstdio>
int main()
{
int n,num;
char s[2000];
while(scanf("%d",&n)==1)
{
num=0;
for(int i=0;i<n;i++)
{ getchar();
scanf("%c",&s[i]);
}
int a=0,b=n-1;
while(a<=b)
{
bool left=false;
for(int i=0;a+i<=b;i++)//这个是为了防止一样的情况
{
if(s[i+a]<s[b-i])
{
left=true;
break;
}
else if(s[a+i]>s[b-i])
{
left=false;
break;
}
}
if(left)
putchar(s[a++]);//a和b的值在不断变化
else
putchar(s[b--]);
num++;
if(num%80==0)
puts(" ");
}
putchar('\n');
}
return 0;
}这样就对了
poj 3617 Best Cow Line的更多相关文章
- POJ 3617 Best Cow Line(最佳奶牛队伍)
POJ 3617 Best Cow Line Time Limit: 1000MS Memory Limit: 65536K [Description] [题目描述] FJ is about to t ...
- POJ 3617 Best Cow Line ||POJ 3069 Saruman's Army贪心
带来两题贪心算法的题. 1.给定长度为N的字符串S,要构造一个长度为N的字符串T.起初,T是一个空串,随后反复进行下面两个操作:1.从S的头部删除一个字符,加到T的尾部.2.从S的尾部删除一个字符,加 ...
- POJ 3617 Best Cow Line (贪心)
Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16104 Accepted: 4 ...
- poj 3617 Best Cow Line (字符串反转贪心算法)
Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9284 Accepted: 2826 Des ...
- POJ 3617 Best Cow Line 贪心算法
Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 26670 Accepted: 7226 De ...
- poj 3617 Best Cow Line 贪心模拟
Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 42701 Accepted: 10911 D ...
- POJ 3617 Best Cow Line (模拟)
题目链接 Description FJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annual"Farmer of the Yea ...
- poj 3617 Best Cow Line 解题报告
题目链接:http://poj.org/problem?id=3617 题目意思:给出一条长度为n的字符串S,目标是要构造一条字典序尽量小,长度为n的字符串T.构造的规则是,如果S的头部的字母 < ...
- POJ 3617 Best Cow Line (字典序最小问题 & 贪心)
原题链接:http://poj.org/problem?id=3617 问题梗概:给定长度为 的字符串 , 要构造一个长度为 的字符串 .起初, 是一个空串,随后反复进行下列任意操作. 从 的头部删除 ...
随机推荐
- AspxSpy2014 Final
受bin牛委托修改并发布,版权归bin牛所有. Bug/建议提交:zcgonvh@rootkit.net.cn 祝各位马年大吉,财源滚滚. 免责声明: 本程序只用于管理员安全检测,使用前请注意环境与法 ...
- filter的详细配置
我们已经了解了filter的基本用法,还有一些细节配置在特殊情况下起作用. 在servlet-2.3中,Filter会过滤一切请求,包括服务器内部使用forward转发请求和<%@ includ ...
- 理解Oracle TM和TX锁
在Oracle中有很多锁,通过v$lock_type视图可以查看Oracle中所有类型的锁,在本篇文章中我们熟悉一下TM和TX锁的类型 SQL> select * from v$lock_typ ...
- php图片转为资源数据
$file='C:\Users\feng\Desktop\images\banner.png'; //图片路径 $type=getimagesize($file); ...
- java 与c#比较
1.开发周期方面:c#比java开发周期更快2.java出现的时间更长.开源性广.跨平台性好3.c#较为封闭.后出于java4.c#有无符号类型.java没有5.java与c#都有值类型.但是java ...
- Xstream(对象和xml转换)
package com.vcredit.framework.utils; import java.io.Writer; import org.apache.commons.lang3.StringUt ...
- BizTalk动手实验(三)BizTalk开发综合实验
1 课程简介 通过本课程熟悉BizTalk开发组件Schema/Map/Orchestration/Pipeline的开发与配置 2 准备工作 3 演示 3.1 创建与配置BizTalk应用程序 1. ...
- BizTalk开发系列(三十六) Orchestration单实例执行
BizTalk 是高效的消息处理引擎,采用多线程并发的方式来处理消息.也就是说当有消息被接收的时候就会产生一个新的消息处理实例.但有时目标系统可能并没有并发处理 的能力, 这时就需要在BizTalk中 ...
- 上传下载后台函数以及前端脚本(webuploader) 备份
import java.io.BufferedOutputStream; import java.io.IOException; import java.io.InputStream; import ...
- mac下docker使用笔记
安装docker https://docs.docker.com/mac/ 启动docker环境launchpad -> Docker Quickstart Terminal ## ...