【拓展题】完美排列
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
题目描述
如果一个长度为 的排列 满足对于每对 ,都不存在 使得 成立,那么该排列就被称为完美排列。给定 ,请你求出任意一个长度为 的完美排列。
注意:长度为 的排列是指由整数 构成的数组
例如, 时,完美排列可以是 , 时,完美排列可以是 , 时,完美排列可以是
提交
请在下述代码基础上进行实现,完成函数后提交
#include "Solution.h"
vector<int> Solution::perfect_permutation(int n) {
vector<int> ans;
// 请在这里完成你的代码
return ans;
}
实验二 树与分治策略
- Status
- Done
- Problem
- 5
- Open Since
- 2024-10-5 14:00
- Deadline
- 2024-10-5 17:30
- Extension
- 144 hour(s)