CF1031C.Cram Time

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In a galaxy far, far away Lesha the student has just got to know that he has an exam in two days. As always, he hasn't attended any single class during the previous year, so he decided to spend the remaining time wisely.

Lesha knows that today he can study for at most aa hours, and he will have bb hours to study tomorrow. Note that it is possible that on his planet there are more hours in a day than on Earth. Lesha knows that the quality of his knowledge will only depend on the number of lecture notes he will read. He has access to an infinite number of notes that are enumerated with positive integers, but he knows that he can read the first note in one hour, the second note in two hours and so on. In other words, Lesha can read the note with number kk in kk hours. Lesha can read the notes in arbitrary order, however, he can't start reading a note in the first day and finish its reading in the second day.

Thus, the student has to fully read several lecture notes today, spending at most aa hours in total, and fully read several lecture notes tomorrow, spending at most bb hours in total. What is the maximum number of notes Lesha can read in the remaining time? Which notes should he read in the first day, and which — in the second?

输入格式

The only line of input contains two integers aa and bb ( 0a,b1090 \leq a, b \leq 10^{9} ) — the number of hours Lesha has today and the number of hours Lesha has tomorrow.

输出格式

In the first line print a single integer nn ( 0na0 \leq n \leq a ) — the number of lecture notes Lesha has to read in the first day. In the second line print nn distinct integers p1,p2,,pnp_1, p_2, \ldots, p_n ( 1pia1 \leq p_i \leq a ), the sum of all pip_i should not exceed aa .

In the third line print a single integer mm ( 0mb0 \leq m \leq b ) — the number of lecture notes Lesha has to read in the second day. In the fourth line print mm distinct integers q1,q2,,qmq_1, q_2, \ldots, q_m ( 1qib1 \leq q_i \leq b ), the sum of all qiq_i should not exceed bb .

All integers pip_i and qiq_i should be distinct. The sum n+mn + m should be largest possible.

输入输出样例

  • 输入#1

    3 3
    

    输出#1

    1
    3 
    2
    2 1 
  • 输入#2

    9 12
    

    输出#2

    2
    3 6
    4
    1 2 4 5
    

说明/提示

In the first example Lesha can read the third note in 33 hours in the first day, and the first and the second notes in one and two hours correspondingly in the second day, spending 33 hours as well. Note that Lesha can make it the other way round, reading the first and the second notes in the first day and the third note in the second day.

In the second example Lesha should read the third and the sixth notes in the first day, spending 99 hours in total. In the second day Lesha should read the first, second fourth and fifth notes, spending 1212 hours in total.

首页