CF1716B.Permutation Chain
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A permutation of length n is a sequence of integers from 1 to n such that each integer appears in it exactly once.
Let the fixedness of a permutation p be the number of fixed points in it — the number of positions j such that pj=j , where pj is the j -th element of the permutation p .
You are asked to build a sequence of permutations a1,a2,… , starting from the identity permutation (permutation a1=[1,2,…,n] ). Let's call it a permutation chain. Thus, ai is the i -th permutation of length n .
For every i from 2 onwards, the permutation ai should be obtained from the permutation ai−1 by swapping any two elements in it (not necessarily neighboring). The fixedness of the permutation ai should be strictly lower than the fixedness of the permutation ai−1 .
Consider some chains for n=3 :
- a1=[1,2,3] , a2=[1,3,2] — that is a valid chain of length 2 . From a1 to a2 , the elements on positions 2 and 3 get swapped, the fixedness decrease from 3 to 1 .
- a1=[2,1,3] , a2=[3,1,2] — that is not a valid chain. The first permutation should always be [1,2,3] for n=3 .
- a1=[1,2,3] , a2=[1,3,2] , a3=[1,2,3] — that is not a valid chain. From a2 to a3 , the elements on positions 2 and 3 get swapped but the fixedness increase from 1 to 3 .
- a1=[1,2,3] , a2=[3,2,1] , a3=[3,1,2] — that is a valid chain of length 3 . From a1 to a2 , the elements on positions 1 and 3 get swapped, the fixedness decrease from 3 to 1 . From a2 to a3 , the elements on positions 2 and 3 get swapped, the fixedness decrease from 1 to 0 .
Find the longest permutation chain. If there are multiple longest answers, print any of them.
输入格式
The first line contains a single integer t ( 1≤t≤99 ) — the number of testcases.
The only line of each testcase contains a single integer n ( 2≤n≤100 ) — the required length of permutations in the chain.
输出格式
For each testcase, first, print the length of a permutation chain k .
Then print k permutations a1,a2,…,ak . a1 should be an identity permutation of length n ( [1,2,…,n] ). For each i from 2 to k , ai should be obtained by swapping two elements in ai−1 . It should also have a strictly lower fixedness than ai−1 .
输入输出样例
输入#1
2 2 3
输出#1
2 1 2 2 1 3 1 2 3 3 2 1 3 1 2