Ex - Linear Maximization
Editorial
/


Time Limit: 5 sec / Memory Limit: 1024 MB
配点 : 点
問題文
次元平面上の点の集合 があります。 ははじめ空です。
の順に、以下のクエリを処理してください。
- 整数 が与えられる。 に点 を追加した後、 を求める。
制約
- 入力は全て整数
- ならば
入力
入力は以下の形式で標準入力から与えられる。
出力
行出力せよ。 行目には、 個目のクエリに対する答えを出力せよ。
入力例 1Copy
Copy
4 1 0 -1 -1 0 1 2 0 -1 0 1 1 0 -1 1 -2
出力例 1Copy
Copy
-1 2 1 2
- のとき : に点 を追加し、 とします。 のとき となり、これが最大値を取ります。
- のとき : に点 を追加し、 とします。 のとき となり、これが最大値を取ります。
- のとき : に点 を追加し、 とします。 または のとき となり、これが最大値を取ります。
- のとき : に点 を追加し、 とします。 のとき となり、これが最大値を取ります。
入力例 2Copy
Copy
9 -1 4 -8 -2 9 -9 -7 7 4 1 6 7 -4 -1 -4 -5 -9 3 -2 -6 -1 0 -8 5 -8 -5 0 0 8 3 0 -4 2 -5 2 5
出力例 2Copy
Copy
0 35 31 21 36 87 0 36 31
Score : points
Problem Statement
There is a set of points on a two-dimensional plane. is initially empty.
For each in this order, process the following query.
- You are given integers , and . Add point to , and then find .
Constraints
- All values in input are integers.
- If , then .
Input
Input is given from Standard Input in the following format:
Output
Print lines. The -th line should contain the answer for the -th query.
Sample Input 1Copy
Copy
4 1 0 -1 -1 0 1 2 0 -1 0 1 1 0 -1 1 -2
Sample Output 1Copy
Copy
-1 2 1 2
- When : add point to , then it will become . For , we have , which is the maximum.
- When : add point to , then it will become . For , we have , which is the maximum.
- When : add point to , then it will become . For or , we have , which is the maximum.
- When : add point to , then it will become . For , we have , which is the maximum.
Sample Input 2Copy
Copy
9 -1 4 -8 -2 9 -9 -7 7 4 1 6 7 -4 -1 -4 -5 -9 3 -2 -6 -1 0 -8 5 -8 -5 0 0 8 3 0 -4 2 -5 2 5
Sample Output 2Copy
Copy
0 35 31 21 36 87 0 36 31