#abc200e. E - Patisserie ABC 2

E - Patisserie ABC 2

Score : 500500 points

问题描述

在_ABC Confiserie_担任糕点师的高桥决定制作蛋糕来庆祝AtCoder Beginner Contest 200。

高桥制作的每款蛋糕有三个参数:美观度(beauty)、口感(taste)和受欢迎程度(popularity),每个参数都由一个介于11NN(包含两端点)之间的整数表示。

对于每组三元组 (i,j,k) (1i,j,kN)(i,j,k)\ (1 \le i,j,k \le N),他已经制作了一个美观度为ii、口感为jj、受欢迎程度为kk的蛋糕。然后,他将这N3N^3个蛋糕按照如下规则排列成一排:

  • 蛋糕从左至右按美观度、口感和受欢迎程度之和升序排列。
  • 对于两个总和相同的蛋糕,美观度较小的蛋糕位于左侧。
  • 对于两个总和相同且美观度也相同的蛋糕,口感较小的蛋糕位于左侧。

请找出从左边数第KK个蛋糕的美观度、口感和受欢迎程度。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Takahashi, a pastry chef at ABC Confiserie, has decided to make cakes to celebrate AtCoder Beginner Contest 200.

A cake made by Takahashi has three parameters: beauty, taste, and popularity, each of which is represented by an integer between 11 and NN (inclusive).

He has made a cake of beauty ii, taste jj, and popularity kk for every triple (i,j,k) (1i,j,kN)(i,j,k)\ (1 \le i,j,k \le N).
Then, he has arranged these N3N^3 cakes in a row, as follows:

  • The cakes are in ascending order of sum of beauty, taste, and popularity from left to right.
  • For two cakes with the same sum of beauty, taste, and popularity, the cake with the smaller beauty is to the left.
  • For two cakes with the same sum and the same beauty, the cake with the smaller taste is to the left.

Find the beauty, taste, and popularity of the KK-th cake from the left.

Constraints

  • All values in input are integers.
  • 1N1061 \le N \le 10^6
  • 1KN31 \le K \le N^3

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print three integers representing the cake's beauty, taste, popularity, in this order, with spaces in between.

Sample Input 1

2 5

Sample Output 1

1 2 2

The cakes are in the following order:

$(1,1,1),(1,1,2),(1,2,1),(2,1,1),(1,2,2),(2,1,2),(2,2,1),(2,2,2)$.

Here, each triple of integers represents the beauty, taste, and popularity of a cake.

Sample Input 2

1000000 1000000000000000000

Sample Output 2

1000000 1000000 1000000

The values in input may be large.

Sample Input 3

9 47

Sample Output 3

3 1 4

update @ 2024/3/10 09:12:09