[Swift]LeetCode506. 相对名次 | Relative Ranks

[Swift]LeetCode506. 相对名次 | Relative Ranks,第1张

概述Given scores of N athletes, find their relative ranks and the people with the top three highest scores, who will be awarded medals: "Gold Medal", "Silver Medal" and "Bronze Medal". Example 1: Input: [

Given scores of N athletes,find their relative ranks and the people with the top three highest scores,who will be awarded medals: "Gold Medal","Silver Medal" and "bronze Medal".

Example 1:

input: [5,4,3,2,1]Output: ["Gold Medal","Silver Medal","bronze Medal","4","5"]Explanation: The first three athletes got the top three highest scores,so they got "Gold Medal","Silver Medal" and "bronze Medal". 
For the left two athletes,you just need to output their relative ranks according to their scores.

 Note:

N is a positive integer and won‘t exceed 10,000. All the scores of athletes are guaranteed to be unique.

 

给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”("Gold Medal","bronze Medal")。

(注:分数越高的选手,排名越靠前。)

示例 1:

输入: [5,1]输出: ["Gold Medal","5"]解释: 前三名运动员的成绩为前三高的,因此将会分别被授予 “金牌”,“银牌”和“铜牌” ("Gold Medal","Silver Medal" and "bronze Medal").余下的两名运动员,我们只需要通过他们的成绩计算将其相对名次即可。

提示:

N 是一个正整数并且不会超过 10000。 所有运动员的成绩都不相同。
 1 class Solution { 2     func findrelativeRanks(_ nums: [Int]) -> [String] { 3         var arr:[Int] = nums 4         //降序排序 5         arr = arr.sorted(by: >) 6         let len:Int = nums.count 7         var res:[String] = Array(repeating: "",count: len) 8  9         //从nums中寻找与arr[j]相同元素,在res中对应位置赋值为j+1,j=0,1,2时特殊处理10         for i in 0..<len11         {12             for j in 0..<len13             {14                 if nums[i] == arr[j]15                 {16 //整个switch语句在第一个匹配switch案例完成后立即完成其执行,而不需要显式break语句。  17 //尽管break在Swift中不需要,但您可以使用break语句来匹配和忽略特定情况,或者在该情况完成执行之前中断匹配的情况。  18                     switch j19                     {20                         case 0:21                         res[i] = "Gold Medal"22                         case 1:23                         res[i] = "Silver Medal"24                         case 2:25                         res[i] = "bronze Medal"           26                         default:27                         res[i] = String(j + 1)                        28                     }29                  break30                 }              31             }32         }33         return res34     }35 }

48ms

 1 class Solution { 2     func findrelativeRanks(_ nums: [Int]) -> [String] { 3         guard nums.count > 0 else { 4             return [] 5         } 6         var index = [Int:Int]() 7         for i in 0..<nums.count { 8             index[nums[i]] = i 9         }10         let sorted = nums.sorted(by: >)11         var rank = [String](repeating: "",count: nums.count)12         for i in 0..<sorted.count {13             if let IDx = index[sorted[i]] {14                 if i == 0 {15                     rank[IDx] = "Gold Medal" 16                 } else if i == 1 {17                     rank[IDx] = "Silver Medal"18                 } else if i == 2 {19                     rank[IDx] = "bronze Medal"20                 } else {21                     rank[IDx] = String(i+1)22                 }23             }24 25         }26         return rank27     }28 }

44ms

 1 class Solution { 2     func findrelativeRanks(_ nums: [Int]) -> [String] { 3         let arr = nums.sorted(by: >) 4         var res = [String]() 5         var dict = [Int:String]() 6         for i in 0..<arr.count { 7             if i == 0 { 8                 dict[arr[i]] = "Gold Medal" 9             } else if i == 1 {10                 dict[arr[i]] = "Silver Medal"11             } else if i == 2 {12                 dict[arr[i]] = "bronze Medal"13             } else {14                 dict[arr[i]] = "\(i+1)"15             }16         }17         for i in nums {18             res.append(dict[i]!)19         }20         return res21     }22 }

80ms

 1 class Solution { 2     func findrelativeRanks(_ nums: [Int]) -> [String] { 3         var nums2 = nums.sorted() 4         return nums.map({ (num) -> String in 5             var left = 0 6             var right = nums.count - 1 7             while left < right { 8                 let mID = left + (right - left) / 2 9                 let val = nums2[mID]10                 if val > num {11                     right = mID12                 } else if val < num {13                     left = mID + 114                 } else {15                     left = mID16                     break17                 }18             }19             20             var string = ""21             if left == nums.count - 1 {22                 string = "Gold Medal"23             } else if left == nums.count - 2 {24                 string = "Silver Medal"25             } else if left == nums.count - 3 {26                 string = "bronze Medal"27             } else {28                 string = String(nums.count - left)29             }30             return string31         })32     }33 }

172ms

1 class Solution {2     func findrelativeRanks(_ nums: [Int]) -> [String] {3         let sortednums = nums.sorted().reversed()4         var ranks = ["Gold Medal","Silver Medal","bronze Medal"]5         ranks = nums.count > 3 ? ranks + (4..<nums.count+1).map{ return String($0) } : ranks6         let dict = Dictionary(uniqueKeysWithValues: zip(sortednums,ranks))7         return nums.map{ return dict[$0]! }8     }9 }
总结

以上是内存溢出为你收集整理的[Swift]LeetCode506. 相对名次 | Relative Ranks全部内容,希望文章能够帮你解决[Swift]LeetCode506. 相对名次 | Relative Ranks所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1023446.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存