C++刷LeetCode(667. 优美的排列 II)【数学】
题目描述:给定两个整数 n 和 k,你需要实现一个数组,这个数组包含从 1 到 n 的 n 个不同整数,同时满足以下条件:
① 如果这个数组是 ,那么数组 [|a1 - a2|, |a2 - a3|, |a3 - a4|, ... , |an-1 - an|] 中应该有且仅有 k 个不同整数;.
② 如果存在多种答案,你只需实现并返回其中任意一种.
示例 1:
输入: n = 3, k = 1
输出:
解释: 包含 3 个范围在 1-3 的不同整数, 并且 中有且仅有 1 个不同整数 : 1
示例 2:
输入: n = 3, k = 2
输出:
解释: 包含 3 个范围在 1-3 的不同整数, 并且 中有且仅有 2 个不同整数: 1 和 2
提示:
n 和 k 满足条件 1 <= k < n <= 104.
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/beautiful-arrangement-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public:
void reverse(vector<int>&res, int start){
int len = res.size() - start;
cout << len << endl;
for(int i = 0; i < len / 2; i++){
swap(res, res);
}
}
vector<int> constructArray(int n, int k) {
vector<int>res(n, 0);
for(int i = 0; i < n; i++)res = i+1;
if(k == 1)return res;
int temp = 1;
for(int i = 0; i < k - 1; i++){
reverse(res, temp);
temp++;
}
return res;
}
};
参考链接:https://leetcode-cn.com/problems/beautiful-arrangement-ii/solution/fan-jiu-wan-shi-liao-he-he-by-ri-mu-tu-yuan-12/
页:
[1]