A - Two Sequences 2 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 300

問題文

すぬけ君は長さ N の数列 a,b を持っています。 a,bi 番目の数はそれぞれ a_i,b_i です。

すぬけ君は a,b を使って長さ N の数列 c を作ることにしました。 1 \leq n \leq N を満たす n について、cn 番目の数 c_n1 \leq i \leq j \leq n を満たすような (i,j) について a_i b_j を計算したときの最大値です。より形式的には c_nc_n = \max_{1 \leq i \leq j \leq n} a_{i}b_{j} で表される数です。

c_1, c_2, \ldots, c_{N} を求めてください。

制約

  • 与えられる入力は全て整数
  • 1 \leq N \leq 2 \times 10^{5}
  • 1 \leq a_i, b_i \leq 10^9

入力

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

N
a_{1} a_{2} \cdots a_{N}
b_{1} b_{2} \cdots b_{N}

出力

N 行出力せよ。上から n 行目では c_{n} を出力せよ。


入力例 1

3
3 2 20
1 4 1

出力例 1

3
12
20
  • c_{1} = \max(a_{1}b_{1}) = 3 です。
  • c_{2} = \max(a_{1}b_{1}, a_{1}b_{2},a_{2}b_{2}) = 12 です。
  • c_{3} = \max(a_{1}b_{1}, a_{1}b_{2}, a_{1}b_{3}, a_{2}b_{2},a_{2}b_{3},a_{3}b_{3}) = 20 です。

入力例 2

20
715806713 926832846 890153850 433619693 890169631 501757984 778692206 816865414 50442173 522507343 546693304 851035714 299040991 474850872 133255173 905287070 763360978 327459319 193289538 140803416
974365976 488724815 821047998 371238977 256373343 218153590 546189624 322430037 131351929 768434809 253508808 935670831 251537597 834352123 337485668 272645651 61421502 439773410 621070911 578006919

出力例 2

697457706539596888
697457706539596888
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026

Score : 300 points

Problem Statement

Snuke has two number sequences a and b, each of length N. The i-th number of a is a_i, and that of b is b_i.

Using these sequences, he has decided to make a new sequence c of length N. For each n such that 1 \leq n \leq N, c_n, the n-th number of c, is the maximum value of a_i b_j for a pair (i,j) such that 1 \leq i \leq j \leq n. Formally, we have c_n = \max_{1 \leq i \leq j \leq n} a_{i}b_{j}.

Find c_1, c_2, \ldots, c_{N}.

Constraints

  • All values in input are integers.
  • 1 \leq N \leq 2 \times 10^{5}
  • 1 \leq a_i, b_i \leq 10^9

Input

Input is given from Standard Input in the following format:

N
a_{1} a_{2} \cdots a_{N}
b_{1} b_{2} \cdots b_{N}

Print

Print N lines. The n-th line from the top should contain c_{n}.


Sample Input 1

3
3 2 20
1 4 1

Sample Output 1

3
12
20

We have:

  • c_{1} = \max(a_{1}b_{1}) = 3;
  • c_{2} = \max(a_{1}b_{1}, a_{1}b_{2},a_{2}b_{2}) = 12;
  • c_{3} = \max(a_{1}b_{1}, a_{1}b_{2}, a_{1}b_{3}, a_{2}b_{2},a_{2}b_{3},a_{3}b_{3}) = 20.

Sample Input 2

20
715806713 926832846 890153850 433619693 890169631 501757984 778692206 816865414 50442173 522507343 546693304 851035714 299040991 474850872 133255173 905287070 763360978 327459319 193289538 140803416
974365976 488724815 821047998 371238977 256373343 218153590 546189624 322430037 131351929 768434809 253508808 935670831 251537597 834352123 337485668 272645651 61421502 439773410 621070911 578006919

Sample Output 2

697457706539596888
697457706539596888
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
760974252688942308
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026
867210459214915026