敢教日月换新天。为有牺牲多壮志,

[Swift]LeetCode667. 优美的排列 II | Beautiful Arrangement II

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10492365.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

Given two integers n and k, you need to construct a list which contains n different positive integers ranging from 1to n and obeys the following requirement: 
Suppose this list is [a1, a2, a3, ... , an], then the list [|a1 - a2|, |a2 - a3|, |a3 - a4|, ... , |an-1 - an|] has exactly k distinct integers.

If there are multiple answers, print any of them.

Example 1:

Input: n = 3, k = 1
Output: [1, 2, 3]
Explanation: The [1, 2, 3] has three different positive integers ranging from 1 to 3, and the [1, 1] has exactly 1 distinct integer: 1.

Example 2:

Input: n = 3, k = 2
Output: [1, 3, 2]
Explanation: The [1, 3, 2] has three different positive integers ranging from 1 to 3, and the [2, 1] has exactly 2 distinct integers: 1 and 2.

Note:

  1. The n and k are in the range 1 <= k < n <= 10^4.

给定两个整数 n 和 k,你需要实现一个数组,这个数组包含从 1 到 n 的 n 个不同整数,同时满足以下条件:

① 如果这个数组是 [a1, a2, a3, ... , an] ,那么数组 [|a1 - a2|, |a2- a3|, |a3 - a4|, ... , |an-1 - an|] 中应该有且仅有 k 个不同整数;.

② 如果存在多种答案,你只需实现并返回其中任意一种.

示例 1:

输入: n = 3, k = 1
输出: [1, 2, 3]
解释: [1, 2, 3] 包含 3 个范围在 1-3 的不同整数, 并且 [1, 1] 中有且仅有 1 个不同整数 : 1 

示例 2:

输入: n = 3, k = 2
输出: [1, 3, 2]
解释: [1, 3, 2] 包含 3 个范围在 1-3 的不同整数, 并且 [2, 1] 中有且仅有 2 个不同整数: 1 和 2 

提示:

  1.  n 和 k 满足条件 1 <= k < n <= 10^4.

Runtime: 28 ms
Memory Usage: 19 MB
复制代码
 1 class Solution {
 2     func constructArray(_ n: Int, _ k: Int) -> [Int] {
 3         var k = k
 4         var res:[Int] = [Int]()
 5         var i:Int = 1
 6         var j:Int = n
 7         while (i <= j)
 8         {
 9             var num:Int = 0
10             if k > 1
11             {
12                 if k % 2 != 0
13                 {
14                     num = i
15                     i += 1 
16                 }
17                 else
18                 {
19                     num = j
20                     j -= 1
21                 }
22                 k -= 1                               
23             }
24             else
25             {
26                 num = i
27                 i += 1 
28             }
29             res.append(num)
30         }        
31         return res
32     }
33 }
复制代码

36ms

复制代码
 1 class Solution {
 2     func constructArray(_ n: Int, _ k: Int) -> [Int] {
 3         var res = Array(repeating: 0, count: n)
 4         var l = 1, r = n
 5         for i in 0..<k {
 6             if i % 2 == 0 {
 7                 res[i] = l
 8                 l += 1
 9             } else {
10                 res[i] = r
11                 r -= 1
12             }
13         }
14         if k % 2 == 1 {
15             for i in k..<n {
16                 res[i] = l
17                 l += 1
18             }            
19         } else {
20             for i in k..<n {
21                 res[i] = r
22                 r -= 1
23             }              
24         }
25 
26         return res
27     }
28 }
复制代码

44ms

复制代码
 1 class Solution {
 2     func constructArray(_ n: Int, _ k: Int) -> [Int] {
 3         if k == 1 { return Array(1 ... n) }
 4         
 5         func gen(_ k: Int) -> [Int] {
 6             var ret = Array(repeating: 0, count: k)
 7             for i in ret.indices {
 8                 ret[i] = i % 2 == 0 ? i/2 + 1 : k - i/2
 9             }
10             return ret
11         }
12         
13         if k + 1 == n { return gen(n) }
14         return gen(k + 1) + Array(k + 2 ... n)
15     }
16 }
复制代码

60ms

复制代码
 1 class Solution {
 2     func constructArray(_ n: Int, _ k: Int) -> [Int] {
 3         var result = [Int](repeating: 0, count: n)
 4         
 5         var j = 0
 6         for i in 0..<(n - k - 1) {
 7             result[i] = i + 1
 8             j += 1
 9         }
10         
11         for i in 0...k {
12             result[j] = i % 2 == 0 
13                 ? n - k + i / 2
14                 : n - i / 2
15             j += 1
16         }
17         
18         return result
19     }
20 }
复制代码

 

posted @   为敢技术  阅读(275)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示
哥伦布
09:09发布
哥伦布
09:09发布
3°
多云
东南风
3级
空气质量
相对湿度
47%
今天
中雨
3°/15°
周三
中雨
3°/13°
周四
小雪
-1°/6°