COCI '12 Contest 1 #3 Koncert

View as PDF

Submit solution


Points: 7
Time limit: 3.0s
Memory limit: 32M

Problem type

M guys and N girls are waiting in front of a concert venue. Some of them already have a ticket, while others are hoping they can still buy one. However, news is just in that one of the performers has had to cancel his appearance. Even worse, all tickets are already sold out! The girls don't want to stay at the concert anymore since their favourite performer won't appear; however, all the guys do want to stay anyways. Tickets aren't tied to a particular person, so the guys can ask the girls who have tickets to give the tickets to them.

Each guy and girl have either zero or one tickets in the beginning, but they can generally carry an unlimited number of tickets. Each person who has at least one ticket can give one of their tickets to any person on the same side of the entrance (either in front of the entrance or inside the venue). Each person can enter the venue only if they have a ticket, which they keep upon entering. Each person in the venue can exit with or without a ticket, keeping any ticket upon exiting.

Determine a sequence of entering, exiting, and ticket giving actions, such that all girls end up outside the venue and a maximum number of guys end up inside the venue.

Input Specification

The first line of input contains two positive integers, M (1 \le M \le 100\,000), the number of guys, and A (1 \le A \le M), the number of guys owning a ticket. Each guy is identified by a unique positive integer between 1 and M.

The second line of input contains the identifiers of guys with tickets, sorted in ascending order.

The third line of input contains two positive integers, N (1 \le N \le 100\,000), the number of girls, and B (1 \le B \le N), the number of girls owning a ticket. Each girl is identified by a unique positive integer between 1 and N. The fourth line of input contains the identifiers of girls with tickets, sorted in ascending order.

Output Specification

Output any sequence of actions satisfying the problem constraints, with length at most 1\,000\,000. All illegal actions will be ignored. Output each action in its own line. Let X and Y be numeric identifiers of guys and girls.

Output a guy entering the venue as ENTER GUY X, and a girl entering as ENTER GIRL X.

Output a guy exiting the venue as EXIT GUY X, and a girl exiting as EXIT GIRL X.

Output a person giving a ticket to a person as GIVE GUY X GUY Y, GIVE GUY X GIRL Y, GIVE GIRL X GUY Y or GIVE GIRL X GIRL Y.

Sample Input 1

2 1
1
1 1
1

Sample Output 1

ENTER GUY 1
GIVE GIRL 1 GUY 2
ENTER GUY 2

Sample Input 2

3 1
3
4 4
1 2 3 4

Sample Output 2

GIVE GIRL 3 GUY 1
GIVE GIRL 2 GUY 1
GIVE GUY 1 GUY 2
ENTER GUY 2
ENTER GUY 1
ENTER GUY 3

Comments

There are no comments at the moment.