CF1493A.Anti-knapsack
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given two integers n and k . You are asked to choose maximum number of distinct integers from 1 to n so that there is no subset of chosen numbers with sum equal to k .
A subset of a set is a set that can be obtained from initial one by removing some (possibly all or none) elements of it.
输入格式
The first line contains the number of test cases T ( 1≤T≤100 ).
Each of the next T lines contains two integers n and k ( 1≤k≤n≤1000 ) — the description of test cases.
输出格式
For each test case output two lines. In the first line output a single integer m — the number of chosen integers.
In the second line output m distinct integers from 1 to n — the chosen numbers.
If there are multiple answers, print any. You can print the numbers in any order.
输入输出样例
输入#1
3 3 2 5 3 1 1
输出#1
2 3 1 3 4 5 2 0