CF1373G Pawns

Description

You are given a chessboard consisting of $ n $ rows and $ n $ columns. Rows are numbered from bottom to top from $ 1 $ to $ n $ . Columns are numbered from left to right from $ 1 $ to $ n $ . The cell at the intersection of the $ x $ -th column and the $ y $ -th row is denoted as $ (x, y) $ . Furthermore, the $ k $ -th column is a special column. Initially, the board is empty. There are $ m $ changes to the board. During the $ i $ -th change one pawn is added or removed from the board. The current board is good if we can move all pawns to the special column by the followings rules: - Pawn in the cell $ (x, y) $ can be moved to the cell $ (x, y + 1) $ , $ (x - 1, y + 1) $ or $ (x + 1, y + 1) $ ; - You can make as many such moves as you like; - Pawns can not be moved outside the chessboard; - Each cell can not contain more than one pawn. The current board may not always be good. To fix it, you can add new rows to the board. New rows are added at the top, i. e. they will have numbers $ n+1, n+2, n+3, \dots $ . After each of $ m $ changes, print one integer — the minimum number of rows which you have to add to make the board good.

Input Format

N/A

Output Format

N/A