G

This problem’s actual name, “Lexicographically Largest Palindromic Subsequence” is too long to fit into the page headline.You are given string s consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence.We’ll call a non-empty string s[p1p2… pk] = sp1sp2… spk (1  ≤  p1 < p2 < … < pk  ≤  |s|) a subsequence of string s = s1s2… s|s|, where |s| is the length of string s. For example, strings “abcb”, “b” and “abacaba” are subsequences of string “abacaba”.String x = x1x2… x|x| is lexicographically larger than string y = y1y2… y|y| if either |x| > |y| and x1 = y1, x2 = y2, …, x|y| = y|y|, or there exists such number r (r < |x|, r < |y|) that x1 = y1, x2 = y2, …, xr = yr and xr  +  1 > yr  +  1. Characters in the strings are compared according to their ASCII codes. For example, string “ranger” is lexicographically larger than string “racecar” and string “poster” is lexicographically larger than string “post”.String s = s1s2… s|s| is a palindrome if it matches string rev(s) = s|s|s|s| - 1… s1. In other words, a string is a palindrome if it reads the same way from left to right and from right to left. For example, palindromic strings are “racecar”, “refer” and “z”.InputThe only input line contains a non-empty string s consisting of lowercase English letters only. Its length does not exceed 10.OutputPrint the lexicographically largest palindromic subsequence of string s.Examples Input radar
Output rr
Input bowwowwow
Output wwwww
Input codeforces
Output s
Input mississipp
Output ssss
NoteAmong all distinct subsequences of string “radar” the following ones are palindromes: “a”, “d”, “r”, “aa”, “rr”, “ada”, “rar”, “rdr”, “raar” and “radar”. The lexicographically largest of them is “rr”.

(只需要找出字符串中最大的字母)

#include <iostream>
#include <bits/stdc++.h>
#include <string.h>
using namespace std;
int main()
{
    int i,len;
    char s[11];
    char t;
    scanf("%s",s);
    len=strlen(s);
    t='a';
    for(i=0;i<len;i++)
    {
        if(s[i]>t)
        {
            t=s[i];
        }
    }
    for(i=0;i<len;i++)
    {
        if(s[i]==t)
        {
            cout << s[i];
        }
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ZZ --瑞 hopeACMer

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值