给定数组arr []仅具有4个整数。任务是返回使用数组中的数字可以形成的最大24小时时间。
请注意,24小时格式的最短时间为00:00 ,最大时间为23:59 。如果无法形成有效时间,则返回-1 。
例子:
Input: arr[] = {1, 2, 3, 4}
Output: 23:41
Input: arr[] = {5, 5, 6, 6}
Output: -1
方法:创建一个HashMap并将每个数字的频率存储在地图中,该频率可用于知道有多少个此类数字可用。
现在,为了生成有效时间,必须满足以下条件:
- 小时的首位数必须在[0,2]范围内。开始以降序检查,以使时间最大化,即从2到0 。一旦选择了数字,就将其在地图中的位置递减1 。
- 如果将第一个数字选择为2 ,则小时的第二个数字必须在[0,3]范围内,否则为[0,9] 。选择数字后,相应地更新HashMap。
- 分钟的第一位数字必须在[0,5]范围内,分钟的第二位数字必须在[0,9]范围内。
如果以上任何条件失败,即在任何时候都无法选择数字,则打印-1,否则打印时间。
下面是上述方法的实现:
C++
// C++ implementation of the approach
#include
using namespace std;
// Function to return the updated frequency map
// for the array passed as argument
map getFrequencyMap(int arr[], int n)
{
map hashMap;
for (int i = 0; i < n; i++) {
hashMap[arr[i]]++;
}
return hashMap;
}
// Function that returns true if the passed digit is present
// in the map after decrementing it's frequency by 1
bool hasDigit(map* hashMap, int digit)
{
// If map contains the digit
if ((*hashMap)[digit]) {
// Decrement the frequency of the digit by 1
(*hashMap)[digit]--;
// True here indicates that the digit was found in the map
return true;
}
// Digit not found
return false;
}
// Function to return the maximum possible time_value in 24-Hours format
string getMaxtime_value(int arr[], int n)
{
map hashMap = getFrequencyMap(arr, n);
int i;
bool flag;
string time_value = "";
flag = false;
// First digit of hours can be from the range [0, 2]
for (i = 2; i >= 0; i--) {
if (hasDigit(&hashMap, i)) {
flag = true;
time_value += (char)i + 48;
break;
}
}
// If no valid digit found
if (!flag)
return "-1";
flag = false;
// If first digit of hours was chosen as 2 then
// the second digit of hours can be
// from the range [0, 3]
if (time_value[0] == '2') {
for (i = 3; i >= 0; i--) {
if (hasDigit(&hashMap, i)) {
flag = true;
time_value += (char)i + 48;
break;
}
}
}
// Else it can be from the range [0, 9]
else {
for (i = 9; i >= 0; i--) {
if (hasDigit(&hashMap, i)) {
flag = true;
time_value += (char)i + 48;
break;
}
}
}
if (!flag)
return "-1";
// Hours and minutes separator
time_value += ":";
flag = false;
// First digit of minutes can be from the range [0, 5]
for (i = 5; i >= 0; i--) {
if (hasDigit(&hashMap, i)) {
flag = true;
time_value += (char)i + 48;
break;
}
}
if (!flag)
return "-1";
flag = false;
// Second digit of minutes can be from the range [0, 9]
for (i = 9; i >= 0; i--) {
if (hasDigit(&hashMap, i)) {
flag = true;
time_value += (char)i + 48;
break;
}
}
if (!flag)
return "-1";
// Return the maximum possible time_value
return time_value;
}
// Driver code
int main()
{
int arr[] = { 0, 0, 0, 9 };
int n = sizeof(arr) / sizeof(int);
cout << (getMaxtime_value(arr, n));
return 0;
}
// contributed by Arnab Kundu
Java
// Java implementation of the approach
import java.util.*;
public class GFG {
// Function to return the updated frequency map
// for the array passed as argument
static HashMap getFrequencyMap(int arr[])
{
HashMap hashMap = new HashMap<>();
for (int i = 0; i < arr.length; i++) {
if (hashMap.containsKey(arr[i])) {
hashMap.put(arr[i], hashMap.get(arr[i]) + 1);
}
else {
hashMap.put(arr[i], 1);
}
}
return hashMap;
}
// Function that returns true if the passed digit is present
// in the map after decrementing it's frequency by 1
static boolean hasDigit(HashMap hashMap, int digit)
{
// If map contains the digit
if (hashMap.containsKey(digit) && hashMap.get(digit) > 0) {
// Decrement the frequency of the digit by 1
hashMap.put(digit, hashMap.get(digit) - 1);
// True here indicates that the digit was found in the map
return true;
}
// Digit not found
return false;
}
// Function to return the maximum possible time in 24-Hours format
static String getMaxTime(int arr[])
{
HashMap hashMap = getFrequencyMap(arr);
int i;
boolean flag;
String time = "";
flag = false;
// First digit of hours can be from the range [0, 2]
for (i = 2; i >= 0; i--) {
if (hasDigit(hashMap, i)) {
flag = true;
time += i;
break;
}
}
// If no valid digit found
if (!flag) {
return "-1";
}
flag = false;
// If first digit of hours was chosen as 2 then
// the second digit of hours can be
// from the range [0, 3]
if (time.charAt(0) == '2') {
for (i = 3; i >= 0; i--) {
if (hasDigit(hashMap, i)) {
flag = true;
time += i;
break;
}
}
}
// Else it can be from the range [0, 9]
else {
for (i = 9; i >= 0; i--) {
if (hasDigit(hashMap, i)) {
flag = true;
time += i;
break;
}
}
}
if (!flag) {
return "-1";
}
// Hours and minutes separator
time += ":";
flag = false;
// First digit of minutes can be from the range [0, 5]
for (i = 5; i >= 0; i--) {
if (hasDigit(hashMap, i)) {
flag = true;
time += i;
break;
}
}
if (!flag) {
return "-1";
}
flag = false;
// Second digit of minutes can be from the range [0, 9]
for (i = 9; i >= 0; i--) {
if (hasDigit(hashMap, i)) {
flag = true;
time += i;
break;
}
}
if (!flag) {
return "-1";
}
// Return the maximum possible time
return time;
}
// Driver code
public static void main(String[] args)
{
int arr[] = { 0, 0, 0, 9 };
System.out.println(getMaxTime(arr));
}
}
Python3
# Python3 implementation of the approach
from collections import defaultdict
# Function to return the updated frequency
# map for the array passed as argument
def getFrequencyMap(arr, n):
hashMap = defaultdict(lambda:0)
for i in range(n):
hashMap[arr[i]] += 1
return hashMap
# Function that returns true if the passed
# digit is present in the map after
# decrementing it's frequency by 1
def hasDigit(hashMap, digit):
# If map contains the digit
if hashMap[digit] > 0:
# Decrement the frequency of
# the digit by 1
hashMap[digit] -= 1
# True here indicates that the
# digit was found in the map
return True
# Digit not found
return False
# Function to return the maximum possible
# time_value in 24-Hours format
def getMaxtime_value(arr, n):
hashMap = getFrequencyMap(arr, n)
flag = False
time_value = ""
# First digit of hours can be
# from the range [0, 2]
for i in range(2, -1, -1):
if hasDigit(hashMap, i) == True:
flag = True
time_value += str(i)
break
# If no valid digit found
if not flag:
return "-1"
flag = False
# If first digit of hours was chosen as 2 then
# the second digit of hours can be
# from the range [0, 3]
if(time_value[0] == '2'):
for i in range(3, -1, -1):
if hasDigit(hashMap, i) == True:
flag = True
time_value += str(i)
break
# Else it can be from the range [0, 9]
else:
for i in range(9, -1, -1):
if hasDigit(hashMap, i) == True:
flag = True
time_value += str(i)
break
if not flag:
return "-1"
# Hours and minutes separator
time_value += ":"
flag = False
# First digit of minutes can be
# from the range [0, 5]
for i in range(5, -1, -1):
if hasDigit(hashMap, i) == True:
flag = True
time_value += str(i)
break
if not flag:
return "-1"
flag = False
# Second digit of minutes can be
# from the range [0, 9]
for i in range(9, -1, -1):
if hasDigit(hashMap, i) == True:
flag = True
time_value += str(i)
break
if not flag:
return "-1"
# Return the maximum possible
# time_value
return time_value
# Driver code
if __name__ == "__main__":
arr = [0, 0, 0, 9]
n = len(arr)
print(getMaxtime_value(arr, n))
# This code is contributed by
# Rituraj Jain
C#
// C# implementation of the approach
using System;
using System.Collections.Generic;
class GFG
{
// Function to return the updated frequency map
// for the array passed as argument
static Dictionary getFrequencyMap(int []arr)
{
Dictionary hashMap = new Dictionary();
for (int i = 0; i < arr.Length; i++)
{
if (hashMap.ContainsKey(arr[i]))
{
hashMap[arr[i]] = hashMap[arr[i]] + 1;
}
else
{
hashMap.Add(arr[i], 1);
}
}
return hashMap;
}
// Function that returns true if the passed digit is present
// in the map after decrementing it's frequency by 1
static bool hasDigit(Dictionary hashMap, int digit)
{
// If map contains the digit
if (hashMap.ContainsKey(digit) && hashMap[digit] > 0)
{
// Decrement the frequency of the digit by 1
hashMap[digit] = hashMap[digit] - 1;
// True here indicates that the
// digit was found in the map
return true;
}
// Digit not found
return false;
}
// Function to return the maximum
// possible time in 24-Hours format
static String getMaxTime(int []arr)
{
Dictionary hashMap = getFrequencyMap(arr);
int i;
bool flag;
String time = "";
flag = false;
// First digit of hours can be from the range [0, 2]
for (i = 2; i >= 0; i--)
{
if (hasDigit(hashMap, i))
{
flag = true;
time += i;
break;
}
}
// If no valid digit found
if (!flag)
{
return "-1";
}
flag = false;
// If first digit of hours was chosen as 2 then
// the second digit of hours can be
// from the range [0, 3]
if (time[0] == '2')
{
for (i = 3; i >= 0; i--)
{
if (hasDigit(hashMap, i))
{
flag = true;
time += i;
break;
}
}
}
// Else it can be from the range [0, 9]
else
{
for (i = 9; i >= 0; i--)
{
if (hasDigit(hashMap, i))
{
flag = true;
time += i;
break;
}
}
}
if (!flag)
{
return "-1";
}
// Hours and minutes separator
time += ":";
flag = false;
// First digit of minutes can be from the range [0, 5]
for (i = 5; i >= 0; i--)
{
if (hasDigit(hashMap, i))
{
flag = true;
time += i;
break;
}
}
if (!flag)
{
return "-1";
}
flag = false;
// Second digit of minutes can be from the range [0, 9]
for (i = 9; i >= 0; i--)
{
if (hasDigit(hashMap, i))
{
flag = true;
time += i;
break;
}
}
if (!flag)
{
return "-1";
}
// Return the maximum possible time
return time;
}
// Driver code
public static void Main(String[] args)
{
int []arr = { 0, 0, 0, 9 };
Console.WriteLine(getMaxTime(arr));
}
}
// This code is contributed by Rajput-Ji
输出:
09:00