记录编号 167799 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [USACO Dec07]最佳老农(金组) 最终得分 100
用户昵称 GravatarAsm.Def 是否通过 通过
代码语言 C++ 运行时间 1.104 s
提交时间 2015-06-28 18:11:20 内存使用 5.09 MiB
显示代码纯文本
/***********************************************************************/
/**********************By Asm.Def-Wu Jiaxin*****************************/
/***********************************************************************/
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <algorithm>
using namespace std;
#define SetFile(x) ( freopen(#x".in", "r", stdin), freopen(#x".out", "w", stdout) );
#define UseFREAD
#ifdef UseFREAD
#define getc() *(file_ptr++)
#define FreadLenth 5000000
char CHARPOOL[FreadLenth], *file_ptr = CHARPOOL;
#else
#define getc() getchar() 
#endif
#ifdef DEBUG
#include <ctime>
#endif
template<class T>inline void getd(T &x){
	char ch = getc();bool neg = false;
	while(!isdigit(ch) && ch != '-')ch = getc();
	if(ch == '-')ch = getc(), neg = true;
	x = ch - '0';
	while(isdigit(ch = getc()))x = x * 10 - '0' + ch;
	if(neg)x = -x;
}
/***********************************************************************/
const int maxn = 30003;

char str[maxn];
int N;

inline void print(char ch){static int cnt = 0;putchar(ch);if(++cnt == 80)putchar('\n'),cnt = 0;}

inline void work(){
	int i = 0, j = N-1, l, r;
	while(i <= j){
		if(str[i] == str[j]){
			l = i, r = j;
			while(l < r && str[l] == str[r])
				++l, --r;
			if(str[l] < str[r])print(str[i++]);
			else print(str[j--]);
		}
		else{
			if(str[i] < str[j])print(str[i++]);
			else if(str[i] > str[j])print(str[j--]);
		}
	}
}

int main(){

#ifdef DEBUG
	freopen("test.txt", "r", stdin);
#elif !defined ONLINE_JUDGE
	SetFile(bclgold);
#endif

#ifdef UseFREAD
	fread(file_ptr, 1, FreadLenth, stdin);
#endif

	getd(N);
	for(char *it = str;it < str+N;++it)while(!isalpha(*it = getc()));
	work();

#ifdef DEBUG
	printf("\n%.3lf sec \n", (double)clock() / CLOCKS_PER_SEC);
#endif
	return 0;
}