http://codeforces.com/problemset/problem/600/C

题意:给你一个小写字母组成的英文串,将它转换为回文串,要求,改变的字母的个数最小,移动字母不算改变字母。

所得的串字典序是最小的。最后输出所得到的串。

思路:要求改变的字母数最小那么用贪心的思想,就把原来的字母尽可能多的填入要求的串中。

首先,先把原串中的字母统计出来,开个数组存对应的字符的个数,然后从‘a’开始循环,如果对应字母的个数大于1;

如果是偶数个的话,就在所求串两端一边加一个,可以正好加完,若是奇数个的话那么按这样的操作,最后就剩下一个,那么把它加入队列。

最后操作队列中的单个的,然后补一个加到串的两端,直到串被补满。

然后再对串的一半排下序就可以了。

  1 #include<stdio.h>
2 #include<algorithm>
3 #include<iostream>
4 #include<string.h>
5 int cmp(const void*p,const void*q);
6 char a[100005*2];
7 char b[100005*2];
8 char c[100005*2];
9 char bb[100005*2];
10 int aa[26];
11 #include<queue>
12 using namespace std;
13 int main(void)
14 {
15 int n,i,j,k,p,q,l,z;
16 while(scanf("%s",a)!=EOF)
17 {
18 queue<int>que;
19 z=0;
20 memset(aa,0,sizeof(aa));
21 l=strlen(a);
22 for(i=0; i<l; i++)//统计对应的字母有多少个
23 {
24 aa[a[i]-'a']++;
25 }
26 int t=0;
27 for(i=0; i<26; i++)
28 {
29 if(aa[i]!=0)
30 {
31 if(aa[i]>=2)//大于2的先加在串的两端
32 {
33 while(aa[i]>1)
34 {
35 aa[i]-=2;
36 a[t]=i+'a';
37 a[l-1-t]=i+'a';
38 t++;
39 z+=2;
40 }
41 }
42 if(aa[i]==1) que.push(i);//剩下1的入队
43
44 }
45
46
47 }
48 while(!que.empty())
49 {
50 int f=que.front();
51 que.pop();
52 if(z>=l)
53 {
54 break;
55 }
56 while(aa[f]>0)
57 {
58 aa[f]-=2;
59 a[t]=f+'a';
60 a[l-1-t]=f+'a';
61 t++;
62 z+=2;
63 if(z>l)
64 {
65 break;
66 }
67 }
68 if(z>=l)//当满了就跳出
69 {
70 break;
71 }
72 }
73 int uu;
74 if(l%2==0)//找串的一半(分奇数偶数讨论)
75 {
76 uu=l/2;
77 }
78 else uu=(l-1)/2;
79 for(i=0; i<uu; i++)
80 {
81 b[i]=a[i];
82 }
83 qsort(b,uu,sizeof(char),cmp);//对串的一半排序
84 for(i=0; i<uu; i++)
85 {
86 printf("%c",b[i]);
87 }
88 if(l%2==1)
89 {
90 printf("%c",a[(l)/2]);
91 }
92 for(i=uu-1; i>=0; i--)
93 {
94 printf("%c",b[i]);
95 }
96 printf("\n");
97
98 }
99 return 0;
100 }
101 int cmp(const void*p,const void*q)
102 {
103 char *w=(char*)p;
104 char *u=(char*)q;
105 return (*w-'a')-(*u-'a');
106 }

codeforce-600C. Make Palindrome(贪心)的更多相关文章

  1. CodeForces - 600C Make Palindrome 贪心

    A string is called palindrome if it reads the same from left to right and from right to left. For ex ...

  2. codeforce 600C - Make Palindrome

    练习string 最小变换次数下,且字典序最小输出回文串. #include <cstdio> #include <cstring> #include <cmath> ...

  3. Educational Codeforces Round 2 C. Make Palindrome 贪心

    C. Make Palindrome Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/600/pr ...

  4. codeforces 600C Make Palindrome

    要保证变化次数最少就是出现次数为奇数的相互转化,而且对应字母只改变一次.保证字典序小就是字典序大的字母变成字典序小的字母. 长度n为偶数时候,次数为奇数的有偶数个,按照上面说的搞就好了. n为奇数时, ...

  5. Educational Codeforces Round 2 C. Make Palindrome —— 贪心 + 回文串

    题目链接:http://codeforces.com/contest/600/problem/C C. Make Palindrome time limit per test 2 seconds me ...

  6. SPOJ:The Next Palindrome(贪心&思维)

    A positive integer is called a palindrome if its representation in the decimal system is the same wh ...

  7. [CF1034B] Longest Palindrome - 贪心

    如果自己是回文串可以做中心 如果一个串和另一个串的转置相等则可以凑一对 优先配对 #include <bits/stdc++.h> using namespace std; int n,m ...

  8. CodeForces - 748D Santa Claus and a Palindrome (贪心+构造)

    题意:给定k个长度为n的字符串,每个字符串有一个魅力值ai,在k个字符串中选取字符串组成回文串,使得组成的回文串魅力值最大. 分析: 1.若某字符串不是回文串a,但有与之对称的串b,将串a和串b所有的 ...

  9. Educational Codeforces Round 2

    600A - Extract Numbers    20171106 字符串处理题,稍微注意点细节就能水过 #include<stdlib.h> #include<stdio.h&g ...

随机推荐

  1. C++20协程实例:携程化的IOCP服务端/客户端

    VC支持协程已经有一段时间了,之前一直想不明白协程的意义在哪里,前几天拉屎的时候突然灵光一闪: 以下是伪代码: task server() { for (;;) { sock_context s = ...

  2. flask分页功能:基于flask-sqlalchemy和jinja2

    先看源码: @app.route('/movie', methods=['GET', 'POST']) @app.route('/home', methods=['GET', 'POST']) @ap ...

  3. zabbix之监控Nginx连接数

    #;下载Nginx (编译的时候必须加上此选项 --with-http_stub_status_module) 官网地址:http://nginx.org/en/docs/http/ngx_http_ ...

  4. FastDFS分布式文件系统及源码解析

    记录一次本人学习FastDFS-分布式文件系统的学习过程,希望能帮助到有需要的人. 首选得对此技术有个大概的了解,可以参考 https://www.cnblogs.com/centos2017/p/7 ...

  5. 莫烦python教程学习笔记——learn_curve曲线用于过拟合问题

    # View more python learning tutorial on my Youtube and Youku channel!!! # Youtube video tutorial: ht ...

  6. 在写易买网时产生的错误 JSTL标签库中<c:choose></c:choose>不能放JSP页面<!-- -->注释

    最近在使用JSTL标签库的<c:choose>标签时候,发现在该标签体中加了JSP的<!-- -->注释时,总是会显示报错信息.错误的信息如下: org.apache.jasp ...

  7. 第44篇-为native方法设置解释执行入口

    对于Java中的native方法来说,实际上调用的是C/C++实现的本地函数,由于可能会在Java解释执行过程中调用native方法,或在本地函数的实现过程中调用Java方法,所以当两者相互调用时,必 ...

  8. Linux目录基础

    一.解析映射文件 本地的DNS Linux: /etc/hosts Windows:C:\Windows\System32\drivers\etc\hosts 二.磁盘挂载文件 /etc/fstab ...

  9. 禁用copy on write实现全局EAT HOOK

    以前写过一个,但是一不小心删除了,哎,就当再次复习复习吧. 首先抛出一个有意思的问题: 已知所有Windows可执行文件exe都会链接子系统ntdll.dll,那么真实内存中有几份ntdll.dll? ...

  10. git 基本命令及idea集成使用

    目录 git基本命令使用 设置签名 gitHub 服务配置秘钥 上传代码 更新代码 分支管理 bat脚本更新 idea集成git git基本命令使用 设置签名 签名和秘钥大多数是一起设置的,设置后一般 ...