Third Group Exam

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

One teacher came up with a new format for an exam.

  • The exam consists of nn blocks, each corresponding to one of the topics; a student receives a grade c_ic\_i for the ii-th block for all ii from 11 to nn, all grades are independent;
  • A grade for each block is an integer value from 00 to 100100 both inclusive. A student chooses one way to get the grade for a block: to answer a theoretical question or to solve a practical problem;
  • An exam is successfully passed if at least aa blocks were graded by answering a theoretical question and at least bb blocks were graded by solving a practical problem;
  • If the previous condition is satisfied, the final grade for the exam CC is calculated as the sum of grades for all blocks, that is C=_i=1nc_iC = \sum\limits\_{i=1}^n c\_i.

Ilya is about to take the exam. He has a pretty good idea of his knowledge for each topic, and he is sure that passing the ii-th block by theory will get him a grade of x_ix\_i, and passing it by practice --- a grade of y_iy\_i. Help him determine which blocks (at least aa of them) he should pass by theory and which blocks (at least bb) he should pass by practice, to get the maximum possible total score for the exam.

입력

The first line of input contains three integers nn, aa and bb --- the total number of topics, the minimum number of topics to pass by theory, and the minimum number of topics to pass by practice, respectively (1n21051 \leqslant n \leqslant 2 \cdot 10^5; 0a,bn0 \leqslant a, b \leqslant n). It is guaranteed that a+bna + b \leqslant n.

The second line consists of nn space-separated integers x_ix\_i --- the grades Ilya will get if he passes the blocks by answering the theory questions (0x_i1000 \leqslant x\_i \leqslant 100).

The third line consists nn of integers y_iy\_i in the same format --- the grades he will get by solving practice problems (0y_i1000 \leqslant y\_i \leqslant 100).

출력

The first line of output must contain a single integer CC --- the maximum total grade that Ilya can get for the exam.

The second line must contain nn space-separated characters, the ii-th of which is 'T' if Ilya should answer theory in the ii-th block, and 'P' if he should solve practice. At least aa of the characters must be equal to 'T', and at least bb of them must be equal to 'P'.