D - Examination Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 77

問題文

AtCoder 高校には NN 人の生徒が在籍し、生徒 11 ,生徒 22 , \ldots ,生徒 NN と番号付けられています。 ある日、全員が数学と英語のテストを受け、 生徒 ii (1iN)(1 \leq i \leq N) は数学で AiA_i 点、英語で BiB_i 点を取りました。AtCoder 高校では、次のようにして成績の順位がつけられます。

  • 数学と英語の合計点が高い生徒が上位
  • 合計点が等しいとき、数学の点が高い生徒が上位
  • 合計点および数学の点が等しいとき、番号が小さい生徒が上位

成績が上位の方から順に、NN 人の生徒番号を出力してください。

制約

  • 2N2×1052 \leq N \leq 2 \times 10^5
  • 0Ai1090 \leq A_i \leq 10^9
  • 0Bi1090 \leq B_i \leq 10^9
  • 入力は全て整数である。

入力

入力は以下の形式で標準入力から与えられる。

NN
A1A_1 A2A_2 \ldots ANA_N
B1B_1 B2B_2 \ldots BNB_N

出力

以下の形式で、11 行に出力せよ。

X1X_1 X2X_2 \ldots XNX_N

ただし、XiX_i は、NN 人の生徒を成績が上位の方から順に並べたとき、ii 番目にくる生徒の番号である。


入力例 1Copy

Copy
5
5 10 10 12 5
10 10 5 0 10

出力例 1Copy

Copy
2 3 1 5 4

順位は次のように判定されます。

  • 数学と英語の合計点は順に、1515 , 2020 , 1515 , 1212 , 1515 であるので、生徒 22 が成績順で 11 番目に、生徒 11 , 33 , 55 がそれぞれ 22 , 33 , 44 番目のいずれかに、生徒 4455 番目に来ます。
  • 生徒 11 , 33 , 55 は数学と英語の合計点が同じであり、数学の点数は順に 55 , 1010 , 55 であるので、生徒 33 が成績順で 22 番目に、生徒 11 , 55 がそれぞれ 33 , 44 番目のいずれかに来ます。
  • 生徒 11 , 55 は数学と英語の合計点および数学の点が同じであるので、番号の小さい生徒 11 が成績順で 33 番目に、大きい生徒 5544 番目に来ます。

よって、成績が上位の方から順に、生徒 22 , 33 , 11 , 55 , 44 となります。


入力例 2Copy

Copy
2
0 1000000000
0 1000000000

出力例 2Copy

Copy
2 1

Score : 77 points

Problem Statement

There are NN students in AtCoder High School, given student IDs and called Student 11, Student 22, \ldots, Student NN. One day, all of them took tests in math and English, and Student ii (1iN)(1 \leq i \leq N) scored AiA_i in math and BiB_i in English. In this school, the students are ranked as follows.

  • A student with a higher total score in math and English ranks higher.
  • When students have the same total score, a student with a higher score in math ranks higher.
  • When students have both the same total score and the same score in math, a student with a smaller student ID ranks higher.

Print the student IDs of the NN students in descending order of rank.

Constraints

  • 2N2×1052 \leq N \leq 2 \times 10^5
  • 0Ai1090 \leq A_i \leq 10^9
  • 0Bi1090 \leq B_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN
A1A_1 A2A_2 \ldots ANA_N
B1B_1 B2B_2 \ldots BNB_N

Output

Print a line in the following format:

X1X_1 X2X_2 \ldots XNX_N

Here, XiX_i should be the student ID of the student who ranks ii-th from the top.


Sample Input 1Copy

Copy
5
5 10 10 12 5
10 10 5 0 10

Sample Output 1Copy

Copy
2 3 1 5 4

The students are ranked as follows.

  • The respective students' total scores in math and English are 1515, 2020, 1515, 1212, 1515, so Student 22 comes 11-st, Students 11, 33, 55 come 22-nd, 33-rd, 44-th in some order, and Student 44 comes 55-th.
  • Students 11, 33, 55, with the same total score in math and English, scored 55, 1010, 55 in math, respectively, so Student 33 comes 22-nd, and Students 11, 55 come 33-rd, 44-th in some order.
  • Since Students 11 and 55 have both the same total score and the same score in math, Student 11, with the smaller student ID, comes 33-rd, and Student 55, with the larger student ID, comes 44-th.

Therefore, the students are ranked in the order 22, 33, 11, 55, 44 from top to bottom.


Sample Input 2Copy

Copy
2
0 1000000000
0 1000000000

Sample Output 2Copy

Copy
2 1


2025-04-05 (Sat)
01:29:45 +00:00