leet-code/src/main/java/leetcode/editor/cn/MaximumPopulationYear.java

64 lines
1.7 KiB
Java
Raw Normal View History

2021-06-07 13:07:21 +08:00
//给你一个二维整数数组 logs ,其中每个 logs[i] = [birthi, deathi] 表示第 i 个人的出生和死亡年份。
//
// 年份 x 的 人口 定义为这一年期间活着的人的数目。第 i 个人被计入年份 x 的人口需要满足x 在闭区间 [birthi, deathi - 1] 内
//。注意,人不应当计入他们死亡当年的人口中。
//
// 返回 人口最多 且 最早 的年份。
//
//
//
// 示例 1
//
// 输入logs = [[1993,1999],[2000,2010]]
//输出1993
//解释:人口最多为 1 ,而 1993 是人口为 1 的最早年份。
//
//
// 示例 2
//
// 输入logs = [[1950,1961],[1960,1971],[1970,1981]]
//输出1960
//解释:
//人口最多为 2 ,分别出现在 1960 和 1970 。
//其中最早年份是 1960 。
//
//
//
// 提示:
//
//
// 1 <= logs.length <= 100
// 1950 <= birthi < deathi <= 2050
//
// Related Topics 数组
// 👍 14 👎 0
package leetcode.editor.cn;
//1854:人口最多的年份
public class MaximumPopulationYear{
public static void main(String[] args) {
//测试代码
Solution solution = new MaximumPopulationYear().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int maximumPopulation(int[][] logs) {
int[] year = new int[100];
for (int[] log : logs) {
for (int j = log[0]; j < log[1]; j++) {
year[j - 1950]++;
}
}
int index = 0;
for (int i = 0; i < 100; i++) {
if (year[i] > year[index]) {
index = i;
}
}
return index + 1950;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}