G - K-th element Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 66

注意

この問題に対する言及は、2021/10/02 18:00 JST まで禁止されています。言及がなされた場合、賠償が請求される可能性があります。 試験後に総合得点や認定級を公表するのは構いませんが、どの問題が解けたかなどの情報は発信しないようにお願いします。

問題文

数列が NN 個あり、ii 番目の数列は長さ AiA_i, 初項 BiB_i, 公差 CiC_i の等差数列です。
NN 個の数列を全て連結して 11 つの数列にしたとき、小さい方から KK 番目の要素を答えてください。

制約

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 1Bi1091 \leq B_i \leq 10^9
  • 1Ci1091 \leq C_i \leq 10^9
  • 1Ki=1NAi\displaystyle 1 \leq K \leq \sum_{i=1}^N A_i
  • 入力は全て整数である。

入力

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

NN KK
A1A_1 B1B_1 C1C_1
\vdots
ANA_N BNB_N CNC_N

出力

連結した数列の小さい方から KK 番目の要素を出力せよ。


入力例 1Copy

Copy
2 4
3 2 2
2 3 4

出力例 1Copy

Copy
6

11 番目の数列は (2,4,6)(2, 4, 6)22 番目の数列は (3,7)(3, 7) なので、この二つの数列を連結すると (2,4,6,3,7)(2, 4, 6, 3, 7) になります。
よって 44 番目に小さい要素は 66 となります。


入力例 2Copy

Copy
2 10
4 1000000000 1000000000
6 1000000000 1000000000

出力例 2Copy

Copy
6000000000

答えが 3232 bit 整数に収まらない可能性があることに注意してください。


入力例 3Copy

Copy
5 10
3 1 4
1 5 9
2 6 5
3 5 8
9 7 9

出力例 3Copy

Copy
16

Score : 66 points

Warning

Do not make any mention of this problem until October 2, 2021, 6:00 p.m. JST. In case of violation, compensation may be demanded. After the examination, you can reveal your total score and grade to others, but nothing more (for example, which problems you solved).

Problem Statement

We have NN sequences of numbers. The ii-th of them is an arithmetic progression of length AiA_i with the initial term BiB_i and the common difference CiC_i.
If all these NN sequences are concatenated into one sequence, what is the KK-th smallest element of that sequence?

Constraints

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 1Bi1091 \leq B_i \leq 10^9
  • 1Ci1091 \leq C_i \leq 10^9
  • 1Ki=1NAi\displaystyle 1 \leq K \leq \sum_{i=1}^N A_i
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK
A1A_1 B1B_1 C1C_1
\vdots
ANA_N BNB_N CNC_N

Output

Print the KK-th smallest element of the sequence after the concatenation.


Sample Input 1Copy

Copy
2 4
3 2 2
2 3 4

Sample Output 1Copy

Copy
6

The first sequence is (2,4,6)(2, 4, 6), and the second sequence is (3,7)(3, 7), so we have (2,4,6,3,7)(2, 4, 6, 3, 7) after the concatenation.
Therefore, the fourth smallest element is 66.


Sample Input 2Copy

Copy
2 10
4 1000000000 1000000000
6 1000000000 1000000000

Sample Output 2Copy

Copy
6000000000

Note that the answer may not fit into a 3232-bit integer.


Sample Input 3Copy

Copy
5 10
3 1 4
1 5 9
2 6 5
3 5 8
9 7 9

Sample Output 3Copy

Copy
16


2025-04-05 (Sat)
02:34:13 +00:00