SHAHBG - SHAHBAG

no tags 

They say "History repeats itself" and this is what happening in Bangladesh on Feb 2013.  Mass people fought the war in 1971 and now they are rising again to fight war criminals who betrayed the country. In "Shahbag" you can hear the voice of people wanting justice.

Shabag protest

If you go to shahbag you can see many human chains. For this problem we imagine a straight line going through middle of shahbag. Each position of the line is marked from 1 to 20000.

People are forming human chains along the line. Initially every position is empty. When someone stands in ithposition he holds hand of people who are standing in his left and right(if there any) and join there group. If there are no people beside him, he forms a new group.

When a new people come your job is to mark his position and count currently how many groups are there in shahbag.

For example suppose:

  1. a man came first and stood in postion 2. Currently there are only 1 group.
  2. then another man stood in position 4. Currently there are 2 groups.
  3. another man stood in position 3. Now there are only 1 group.

And yes, people won't leave until they get justice, so no need to worry about that. mi

Input

There will be a single case. First line will contain an integer Q which denotes number of people. Next line will contain Q (1 <= Q <= 20000) integers pi which denotes position of i-th people that joined the chain. Each pi will be distinct and at most 20000.

Output

For each pi print number of groups currently in shahbag. In last line print the string "Justice" with a newline. Do not print any extra spaces.

Example

Sample Input:
6
2 4 3 6 7 5

Sample output:
1
2
1
2
2
1
Justice

Note:

This problem is based on true event. You can find the details here.

Alternate writer: Rashedul Hasan Rijul


hide comments
demmarl: 2024-03-08 06:38:56

I liked this problem to practice DSU ! Easy and usefull

eshbiz: 2024-02-26 06:48:20

bull sheet

shreyas_07: 2020-10-17 07:22:31

Use bitsets for lesser memory

cnitish10: 2019-10-25 11:06:42

Guys use array size 30000 costed me 2 WA

explodingfrz: 2019-06-13 10:04:23

Easy question , just set array size to 30000 as others have mentioned , got 1 WA with 20005 :/

jareehd: 2019-04-08 14:06:14

3 WA due to "\n" after justice

markaman: 2018-12-29 15:07:28

Advance version of IAPCR2C

bayulaxana: 2018-01-18 09:34:27

print "Justice\n" at the last line. It has been described clearly in the output description.
Read it !

mahmud2690: 2017-05-12 14:43:39

What a stupid question. Waste of time

vengatesh15: 2017-02-05 07:45:15

easy one ...


Added by:Shafaet
Date:2013-02-11
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64