eolymp
bolt
Try our new interface for solving problems
Problems

Buffcraft

Buffcraft

Brenda enjoys a new role-playing game Buffcraft. Shields, swords, books and other carry-on items do not affects character stats in Buffcraft. The only way to increase the stats of your character is to buff her.

There are two types of buffs in Buffcraft. Direct buffs increase a base value of the stat, while percentage buffs increase stats by the fraction of the base value. To be precise, if unbuffed base value of your character stat is b, you have buffed her using n direct buffs of strength d1, d2, ..., dn and m percentage buffs of strength p1, p2, ..., pm, the resulting stat will be equal to (b + d1 + d2 + ... + dn)(100 + p1 + p2 + ... + pm) / 100. Note that the resulting stat may be fractional.

Unfortunately, your character has only k buff slots and if you apply more than k buffs on her, only the last k buffs remains active. Thus, there is no reason to apply more than k buffs simultaneously. You cannot apply the same buff more than once.

Brenda is going to send his character to raid and wants to buff her health to maximal possible value. She has some direct and some percentage buffs at her disposal and needs your help to select the set of buffs that leads to maximal possible total health.

Input

The first line contains four integers b, k, cd and cp - the base health of the character, the number of buff slots, the number of available directs buffs, and the number of available percentage buffs.

The following line contains cd integers di - strengths of direct buffs.

The last line contains cp integer numbers pi - strengths of percentage buffs.

All numbers are greater than or equal to zero, and less than or equal to fifty thousand.

Output

The first line must contain two integers n and m - the number of direct and percentage buffs to use (0ncd, 0mcp, 0n + mk).

The following line must contain n different numbers - indices of direct buffs to apply (buffs are numbered from one).

The last line must contain m different numbers - indices of percentage buffs to apply (also numbered from one).

The resulting total health after application of all n + m buffs must be maximal possible.

Time limit 1 second
Memory limit 64 MiB
Input example #1
70 3 2 2
40 30
50 40
Output example #1
2 1
1 2 
1 
Input example #2
1 2 3 4
6 6 5
8 10 7 9
Output example #2
2 0
2 1 

Source 2014 ACM NEERC, Northern Subregion, November 8, Problem B