CF1599A.Weights
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an array A of length N weights of masses A1 , A2 ... AN . 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 A1 ,..., AN . There is also a string S consisting of characters "L" and "R", meaning that after putting the i−th weight (not Ai , but i−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 S are satisfied.
输入格式
The first line contains one integer N ( 1≤N≤2∗105 ) - the length of the array A The second line contains N distinct integers: A1 , A2 ,..., AN ( 1≤Ai≤109 ) - the weights given The third line contains string S of length N consisting only of letters "L" and "R" - string determining which side of the balance should be heavier after putting the i−th weight of your choice
输出格式
The output contains N 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
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 S are fulfilled and our order of putting the weights is correct.