返回介绍

solution / 0500-0599 / 0568.Maximum Vacation Days / README_EN

发布于 2024-06-17 01:03:59 字数 7403 浏览 0 评论 0 收藏 0

568. Maximum Vacation Days

中文文档

Description

LeetCode wants to give one of its best employees the option to travel among n cities to collect algorithm problems. But all work and no play makes Jack a dull boy, you could take vacations in some particular cities and weeks. Your job is to schedule the traveling to maximize the number of vacation days you could take, but there are certain rules and restrictions you need to follow.

Rules and restrictions:

  1. You can only travel among n cities, represented by indexes from 0 to n - 1. Initially, you are in the city indexed 0 on Monday.
  2. The cities are connected by flights. The flights are represented as an n x n matrix (not necessarily symmetrical), called flights representing the airline status from the city i to the city j. If there is no flight from the city i to the city j, flights[i][j] == 0; Otherwise, flights[i][j] == 1. Also, flights[i][i] == 0 for all i.
  3. You totally have k weeks (each week has seven days) to travel. You can only take flights at most once per day and can only take flights on each week's Monday morning. Since flight time is so short, we do not consider the impact of flight time.
  4. For each city, you can only have restricted vacation days in different weeks, given an n x k matrix called days representing this relationship. For the value of days[i][j], it represents the maximum days you could take a vacation in the city i in the week j.
  5. You could stay in a city beyond the number of vacation days, but you should work on the extra days, which will not be counted as vacation days.
  6. If you fly from city A to city B and take the vacation on that day, the deduction towards vacation days will count towards the vacation days of city B in that week.
  7. We do not consider the impact of flight hours on the calculation of vacation days.

Given the two matrices flights and days, return _the maximum vacation days you could take during _k_ weeks_.

 

Example 1:

Input: flights = [[0,1,1],[1,0,1],[1,1,0]], days = [[1,3,1],[6,0,3],[3,3,3]]
Output: 12
Explanation:
One of the best strategies is:
1st week : fly from city 0 to city 1 on Monday, and play 6 days and work 1 day.
(Although you start at city 0, we could also fly to and start at other cities since it is Monday.)
2nd week : fly from city 1 to city 2 on Monday, and play 3 days and work 4 days.
3rd week : stay at city 2, and play 3 days and work 4 days.
Ans = 6 + 3 + 3 = 12.

Example 2:

Input: flights = [[0,0,0],[0,0,0],[0,0,0]], days = [[1,1,1],[7,7,7],[7,7,7]]
Output: 3
Explanation:
Since there are no flights that enable you to move to another city, you have to stay at city 0 for the whole 3 weeks. 
For each week, you only have one day to play and six days to work.
So the maximum number of vacation days is 3.
Ans = 1 + 1 + 1 = 3.

Example 3:

Input: flights = [[0,1,1],[1,0,1],[1,1,0]], days = [[7,0,0],[0,7,0],[0,0,7]]
Output: 21
Explanation:
One of the best strategies is:
1st week : stay at city 0, and play 7 days.
2nd week : fly from city 0 to city 1 on Monday, and play 7 days.
3rd week : fly from city 1 to city 2 on Monday, and play 7 days.
Ans = 7 + 7 + 7 = 21

 

Constraints:

  • n == flights.length
  • n == flights[i].length
  • n == days.length
  • k == days[i].length
  • 1 <= n, k <= 100
  • flights[i][j] is either 0 or 1.
  • 0 <= days[i][j] <= 7

Solutions

Solution 1

class Solution:
  def maxVacationDays(self, flights: List[List[int]], days: List[List[int]]) -> int:
    n = len(flights)
    K = len(days[0])
    f = [[-inf] * n for _ in range(K + 1)]
    f[0][0] = 0
    for k in range(1, K + 1):
      for j in range(n):
        f[k][j] = f[k - 1][j]
        for i in range(n):
          if flights[i][j]:
            f[k][j] = max(f[k][j], f[k - 1][i])
        f[k][j] += days[j][k - 1]
    return max(f[-1][j] for j in range(n))
class Solution {
  public int maxVacationDays(int[][] flights, int[][] days) {
    int n = flights.length;
    int K = days[0].length;
    final int inf = 1 << 30;
    int[][] f = new int[K + 1][n];
    for (var g : f) {
      Arrays.fill(g, -inf);
    }
    f[0][0] = 0;
    for (int k = 1; k <= K; ++k) {
      for (int j = 0; j < n; ++j) {
        f[k][j] = f[k - 1][j];
        for (int i = 0; i < n; ++i) {
          if (flights[i][j] == 1) {
            f[k][j] = Math.max(f[k][j], f[k - 1][i]);
          }
        }
        f[k][j] += days[j][k - 1];
      }
    }
    int ans = 0;
    for (int j = 0; j < n; ++j) {
      ans = Math.max(ans, f[K][j]);
    }
    return ans;
  }
}
class Solution {
public:
  int maxVacationDays(vector<vector<int>>& flights, vector<vector<int>>& days) {
    int n = flights.size();
    int K = days[0].size();
    int f[K + 1][n];
    memset(f, -0x3f, sizeof(f));
    f[0][0] = 0;
    for (int k = 1; k <= K; ++k) {
      for (int j = 0; j < n; ++j) {
        f[k][j] = f[k - 1][j];
        for (int i = 0; i < n; ++i) {
          if (flights[i][j] == 1) {
            f[k][j] = max(f[k][j], f[k - 1][i]);
          }
        }
        f[k][j] += days[j][k - 1];
      }
    }
    int ans = 0;
    for (int j = 0; j < n; ++j) {
      ans = max(ans, f[K][j]);
    }
    return ans;
  }
};
func maxVacationDays(flights [][]int, days [][]int) (ans int) {
  n, K := len(flights), len(days[0])
  f := make([][]int, K+1)
  for i := range f {
    f[i] = make([]int, n)
    for j := range f[i] {
      f[i][j] = -(1 << 30)
    }
  }
  f[0][0] = 0
  for k := 1; k <= K; k++ {
    for j := 0; j < n; j++ {
      f[k][j] = f[k-1][j]
      for i := 0; i < n; i++ {
        if flights[i][j] == 1 {
          f[k][j] = max(f[k][j], f[k-1][i])
        }
      }
      f[k][j] += days[j][k-1]
    }
  }
  for j := 0; j < n; j++ {
    ans = max(ans, f[K][j])
  }
  return
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文