leet-code/src/main/java/leetcode/editor/cn/MinimumNumberOfOperationsToConvertTime.java
2022-04-14 17:40:38 +08:00

72 lines
2.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//给你两个字符串 current 和 correct ,表示两个 24 小时制时间 。
//
// 24 小时制时间 按 "HH:MM" 进行格式化,其中 HH 在 00 和 23 之间,而 MM 在 00 和 59 之间。最早的 24 小时制时间为 0
//0:00 ,最晚的是 23:59 。
//
// 在一步操作中,你可以将 current 这个时间增加 1、5、15 或 60 分钟。你可以执行这一操作 任意 次数。
//
// 返回将 current 转化为 correct 需要的 最少操作数 。
//
//
//
// 示例 1
//
// 输入current = "02:30", correct = "04:35"
//输出3
//解释:
//可以按下述 3 步操作将 current 转换为 correct
//- 为 current 加 60 分钟current 变为 "03:30" 。
//- 为 current 加 60 分钟current 变为 "04:30" 。
//- 为 current 加 5 分钟current 变为 "04:35" 。
//可以证明,无法用少于 3 步操作将 current 转化为 correct 。
//
// 示例 2
//
// 输入current = "11:00", correct = "11:01"
//输出1
//解释:只需要为 current 加一分钟,所以最小操作数是 1 。
//
//
//
//
// 提示:
//
//
// current 和 correct 都符合 "HH:MM" 格式
// current <= correct
//
// Related Topics 贪心 字符串 👍 7 👎 0
package leetcode.editor.cn;
//2224:转化时间需要的最少操作数
public class MinimumNumberOfOperationsToConvertTime {
public static void main(String[] args) {
Solution solution = new MinimumNumberOfOperationsToConvertTime().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int convertTime(String current, String correct) {
String strs1[] = current.split(":");
String strs2[] = correct.split(":");
int sum = Integer.parseInt(strs2[0]) * 60
+ Integer.parseInt(strs2[1])
- Integer.parseInt(strs1[0]) * 60
- Integer.parseInt(strs1[1]);
int count = 0;
int[] arrs = new int[]{60, 15, 5, 1};
for (int arr : arrs) {
if (sum >= arr) {
count += sum / arr;
sum %= arr;
}
}
return count;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}