CF1599A.Weights

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an array AA of length NN weights of masses A1A_1 , A2A_2 ... ANA_N . No two weights have the same mass. You can put every weight on one side of the balance (left or right). You don't have to put weights in order A1A_1 ,..., ANA_N . There is also a string SS consisting of characters "L" and "R", meaning that after putting the ithi-th weight (not AiA_i , but ithi-th weight of your choice) left or right side of the balance should be heavier. Find the order of putting the weights on the balance such that rules of string SS are satisfied.

输入格式

The first line contains one integer NN ( 1N21051 \leq N \leq 2*10^5 ) - the length of the array AA The second line contains NN distinct integers: A1A_1 , A2A_2 ,..., ANA_N ( 1Ai1091 \leq A_i \leq 10^9 ) - the weights given The third line contains string SS of length NN consisting only of letters "L" and "R" - string determining which side of the balance should be heavier after putting the ithi-th weight of your choice

输出格式

The output contains NN lines. In every line, you should print one integer and one letter - integer representing the weight you are putting on the balance in that move and the letter representing the side of the balance where you are putting the weight. If there is no solution, print 1-1 .

输入输出样例

  • 输入#1

    5
    3 8 2 13 7
    LLRLL

    输出#1

    3 L
    2 R
    8 R
    13 L
    7 L

说明/提示

Explanation for the test case:

after the 1st weight: 3 L (left side is heavier)

after the 2nd weight: 2 R (left side is heavier)

after the 3rd weight: 8 R (right side is heavier)

after the 4th weight: 13 L (left side is heavier)

after the 5th weight: 7 L (left side is heavier)

So, the rules given by string SS are fulfilled and our order of putting the weights is correct.

首页