1854. 人口最多的年份

题目

给你一个二维整数数组 logs ,其中每个 logs[i] = [birthi, deathi] 表示第 i 个人的出生和死亡年份。

年份 x人口 定义为这一年期间活着的人的数目。第 i 个人被计入年份 x 的人口需要满足:x 在闭区间 [birthi, deathi - 1] 内。注意,人不应当计入他们死亡当年的人口中。

返回 人口最多最早 的年份。

示例1:

1
2
3
输入:logs = [[1993,1999],[2000,2010]]
输出:1993
解释:人口最多为 1 ,而 1993 是人口为 1 的最早年份。

示例2:

1
2
3
4
5
输入:logs = [[1950,1961],[1960,1971],[1970,1981]]
输出:1960
解释:
人口最多为 2 ,分别出现在 1960 和 1970 。
其中最早年份是 1960 。

提示:

  • 1 <= logs.length <= 100
  • 1950 <= birth[i] < death[i] <= 2050

解法

解法一:

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public int maximumPopulation(int[][] logs) {
int max = Integer.MIN_VALUE;
int[] count = new int[101];
for (int[] log : logs) {
count[log[0] - 1950]++;
count[log[1] - 1950]--;
}

int currentValue = 0;
int index = 0;
for (int i = 0;i < count.length;i++) {
currentValue += count[i];
if (currentValue > max) {
max = currentValue;
index = i;
}
}
return index + 1950;
}

解法二:

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public int maximumPopulation(int[][] logs) {
int max = Integer.MIN_VALUE;
int[] count = new int[101];
for (int[] log : logs) {
for (int i = log[0];i < log[1];i++) {
int year = i - 1950;
count[year]++;
if (count[year] > max) {
max = count[year];
}
}
}

for (int i = 0;i < count.length;i++) {
if (count[i] == max) {
return i + 1950;
}
}
return -1;
}
0%