返回介绍

solution / 1300-1399 / 1320.Minimum Distance to Type a Word Using Two Fingers / README_EN

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

1320. Minimum Distance to Type a Word Using Two Fingers

中文文档

Description

You have a keyboard layout as shown above in the X-Y plane, where each English uppercase letter is located at some coordinate.

  • For example, the letter 'A' is located at coordinate (0, 0), the letter 'B' is located at coordinate (0, 1), the letter 'P' is located at coordinate (2, 3) and the letter 'Z' is located at coordinate (4, 1).

Given the string word, return _the minimum total distance to type such string using only two fingers_.

The distance between coordinates (x1, y1) and (x2, y2) is |x1 - x2| + |y1 - y2|.

Note that the initial positions of your two fingers are considered free so do not count towards your total distance, also your two fingers do not have to start at the first letter or the first two letters.

 

Example 1:

Input: word = "CAKE"
Output: 3
Explanation: Using two fingers, one optimal way to type "CAKE" is: 
Finger 1 on letter 'C' -> cost = 0 
Finger 1 on letter 'A' -> cost = Distance from letter 'C' to letter 'A' = 2 
Finger 2 on letter 'K' -> cost = 0 
Finger 2 on letter 'E' -> cost = Distance from letter 'K' to letter 'E' = 1 
Total distance = 3

Example 2:

Input: word = "HAPPY"
Output: 6
Explanation: Using two fingers, one optimal way to type "HAPPY" is:
Finger 1 on letter 'H' -> cost = 0
Finger 1 on letter 'A' -> cost = Distance from letter 'H' to letter 'A' = 2
Finger 2 on letter 'P' -> cost = 0
Finger 2 on letter 'P' -> cost = Distance from letter 'P' to letter 'P' = 0
Finger 1 on letter 'Y' -> cost = Distance from letter 'A' to letter 'Y' = 4
Total distance = 6

 

Constraints:

  • 2 <= word.length <= 300
  • word consists of uppercase English letters.

Solutions

Solution 1

class Solution:
  def minimumDistance(self, word: str) -> int:
    def dist(a: int, b: int) -> int:
      x1, y1 = divmod(a, 6)
      x2, y2 = divmod(b, 6)
      return abs(x1 - x2) + abs(y1 - y2)

    n = len(word)
    f = [[[inf] * 26 for _ in range(26)] for _ in range(n)]
    for j in range(26):
      f[0][ord(word[0]) - ord('A')][j] = 0
      f[0][j][ord(word[0]) - ord('A')] = 0
    for i in range(1, n):
      a, b = ord(word[i - 1]) - ord('A'), ord(word[i]) - ord('A')
      d = dist(a, b)
      for j in range(26):
        f[i][b][j] = min(f[i][b][j], f[i - 1][a][j] + d)
        f[i][j][b] = min(f[i][j][b], f[i - 1][j][a] + d)
        if j == a:
          for k in range(26):
            t = dist(k, b)
            f[i][b][j] = min(f[i][b][j], f[i - 1][k][a] + t)
            f[i][j][b] = min(f[i][j][b], f[i - 1][a][k] + t)
    a = min(f[n - 1][ord(word[-1]) - ord('A')])
    b = min(f[n - 1][j][ord(word[-1]) - ord('A')] for j in range(26))
    return int(min(a, b))
class Solution {
  public int minimumDistance(String word) {
    int n = word.length();
    final int inf = 1 << 30;
    int[][][] f = new int[n][26][26];
    for (int[][] g : f) {
      for (int[] h : g) {
        Arrays.fill(h, inf);
      }
    }
    for (int j = 0; j < 26; ++j) {
      f[0][word.charAt(0) - 'A'][j] = 0;
      f[0][j][word.charAt(0) - 'A'] = 0;
    }
    for (int i = 1; i < n; ++i) {
      int a = word.charAt(i - 1) - 'A';
      int b = word.charAt(i) - 'A';
      int d = dist(a, b);
      for (int j = 0; j < 26; ++j) {
        f[i][b][j] = Math.min(f[i][b][j], f[i - 1][a][j] + d);
        f[i][j][b] = Math.min(f[i][j][b], f[i - 1][j][a] + d);
        if (j == a) {
          for (int k = 0; k < 26; ++k) {
            int t = dist(k, b);
            f[i][b][j] = Math.min(f[i][b][j], f[i - 1][k][a] + t);
            f[i][j][b] = Math.min(f[i][j][b], f[i - 1][a][k] + t);
          }
        }
      }
    }
    int ans = inf;
    for (int j = 0; j < 26; ++j) {
      ans = Math.min(ans, f[n - 1][j][word.charAt(n - 1) - 'A']);
      ans = Math.min(ans, f[n - 1][word.charAt(n - 1) - 'A'][j]);
    }
    return ans;
  }

  private int dist(int a, int b) {
    int x1 = a / 6, y1 = a % 6;
    int x2 = b / 6, y2 = b % 6;
    return Math.abs(x1 - x2) + Math.abs(y1 - y2);
  }
}
class Solution {
public:
  int minimumDistance(string word) {
    int n = word.size();
    const int inf = 1 << 30;
    vector<vector<vector<int>>> f(n, vector<vector<int>>(26, vector<int>(26, inf)));
    for (int j = 0; j < 26; ++j) {
      f[0][word[0] - 'A'][j] = 0;
      f[0][j][word[0] - 'A'] = 0;
    }
    for (int i = 1; i < n; ++i) {
      int a = word[i - 1] - 'A';
      int b = word[i] - 'A';
      int d = dist(a, b);
      for (int j = 0; j < 26; ++j) {
        f[i][b][j] = min(f[i][b][j], f[i - 1][a][j] + d);
        f[i][j][b] = min(f[i][j][b], f[i - 1][j][a] + d);
        if (j == a) {
          for (int k = 0; k < 26; ++k) {
            int t = dist(k, b);
            f[i][b][j] = min(f[i][b][j], f[i - 1][k][a] + t);
            f[i][j][b] = min(f[i][j][b], f[i - 1][a][k] + t);
          }
        }
      }
    }
    int ans = inf;
    for (int j = 0; j < 26; ++j) {
      ans = min(ans, f[n - 1][word[n - 1] - 'A'][j]);
      ans = min(ans, f[n - 1][j][word[n - 1] - 'A']);
    }
    return ans;
  }

  int dist(int a, int b) {
    int x1 = a / 6, y1 = a % 6;
    int x2 = b / 6, y2 = b % 6;
    return abs(x1 - x2) + abs(y1 - y2);
  }
};
func minimumDistance(word string) int {
  n := len(word)
  f := make([][26][26]int, n)
  const inf = 1 << 30
  for i := range f {
    for j := range f[i] {
      for k := range f[i][j] {
        f[i][j][k] = inf
      }
    }
  }
  for j := range f[0] {
    f[0][word[0]-'A'][j] = 0
    f[0][j][word[0]-'A'] = 0
  }
  dist := func(a, b int) int {
    x1, y1 := a/6, a%6
    x2, y2 := b/6, b%6
    return abs(x1-x2) + abs(y1-y2)
  }
  for i := 1; i < n; i++ {
    a, b := int(word[i-1]-'A'), int(word[i]-'A')
    d := dist(a, b)
    for j := 0; j < 26; j++ {
      f[i][b][j] = min(f[i][b][j], f[i-1][a][j]+d)
      f[i][j][b] = min(f[i][j][b], f[i-1][j][a]+d)
      if j == a {
        for k := 0; k < 26; k++ {
          t := dist(k, b)
          f[i][b][j] = min(f[i][b][j], f[i-1][k][a]+t)
          f[i][j][b] = min(f[i][j][b], f[i-1][a][k]+t)
        }
      }
    }
  }
  ans := inf
  for j := 0; j < 26; j++ {
    ans = min(ans, f[n-1][word[n-1]-'A'][j])
    ans = min(ans, f[n-1][j][word[n-1]-'A'])
  }
  return ans
}

func abs(x int) int {
  if x < 0 {
    return -x
  }
  return x
}

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

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

发布评论

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