• 【HackerRank】 Game Of Thrones


    King Robert has 7 kingdoms under his rule. He gets to know from a raven that the Dothraki are going to wage a war against him soon. But, he knows the Dothraki need to cross the narrow river to enter his dynasty. There is only one bridge that connects both sides of the river which is sealed by a huge door.

    The king wants to lock the door, so that, the Dothraki can't enter. But, to lock the door he needs a key that is an anagram of a certain palindrome string.

    The king has a list of words. Help him figure out if any anagram of the words can be a palindrome or not?

    Input Format
    A single line which contains the input string

    Constraints
    1<=length of string <= 10^5 Each character of the string is a lowercase english letter.

    Output Format
    A single line which contains YES/NO in capital letter of english alphabet.


    题解:一个字符串能够通过变换变成一个回文串的充要条件是它里面最多有一种字母,在字符串里面出现的次数是奇数,其他种的字符在字符串里面出现的次数都是偶数。

     1 import java.io.*;
     2 import java.util.*;
     3 import java.text.*;
     4 import java.math.*;
     5 import java.util.regex.*;
     6 
     7 public class Solution {
     8 
     9     static String GameOfThronesI(String a){
    10         int[] count = new int[26];
    11         for(int i =0;i < a.length();i++)
    12             count[a.charAt(i)-'a']++;
    13         int isOdd = 0;
    14         for(int i = 0;i < 26;i++)
    15             if(count[i]%2 != 0)
    16                 isOdd++;
    17         return isOdd <= 1?"YES":"NO";
    18     }
    19     public static void main(String[] args) {
    20         Scanner myScan = new Scanner(System.in);
    21         String inputString = myScan.nextLine();
    22        
    23         // Assign ans a value of s or no, depending on whether or not inputString satisfies the required condition
    24         System.out.println(GameOfThronesI(inputString));
    25         myScan.close();
    26     }
    27 }
  • 相关阅读:
    MapReduce学习总结之简介
    Hive Cli相关操作
    使用Hive UDF和GeoIP库为Hive加入IP识别功能
    Google Maps-IP地址的可视化查询
    hive多表联合查询(GroupLens->Users,Movies,Ratings表)
    云计算平台管理的三大利器Nagios、Ganglia和Splunk
    机器大数据也离不开Hadoop
    hive与hbase的整合
    hive优化之------控制hive任务中的map数和reduce数
    Hadoop管理员的十个最佳实践(转)
  • 原文地址:https://www.cnblogs.com/sunshineatnoon/p/3875697.html
Copyright © 2020-2023  润新知