Problem - 1864B - Codeforces (2024)

Enter | Register


  • Home
  • Top
  • Catalog
  • Contests
  • Gym
  • Problemset
  • Groups
  • Rating
  • Edu
  • API
  • Calendar
  • Help


Harbour.Space Scholarship Contest 2023-2024 (Div. 1 + Div. 2)
Finished

→ Virtual participation

Virtual contest is a way to take part in past contest, as close as possible to participation on time. It is supported only ICPC mode for virtual contests.If you've seen these problems, a virtual contest is not for you - solve these problems in the archive.If you just want to solve some problem from a contest, a virtual contest is not for you - solve this problem in the archive.Never use someone else's code, read the tutorials or communicate with other person during a virtual contest.

→ Problem tags

constructive algorithms

greedy

sortings

strings

*1100

No tag edit access

→ Contest materials

  • Announcement (en)Problem - 1864B - Codeforces (4)
  • Tutorial (en)Problem - 1864B - Codeforces (5)
  • Problems
  • Submit
  • Status
  • Standings
  • Custom test

B. Swap and Reverse

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given a string $$$s$$$ of length $$$n$$$ consisting of lowercase English letters, and an integer $$$k$$$. In one step you can perform any one of the two operations below:

  • Pick an index $$$i$$$ ($$$1 \le i \le n - 2$$$) and swap $$$s_{i}$$$ and $$$s_{i+2}$$$.
  • Pick an index $$$i$$$ ($$$1 \le i \le n-k+1$$$) and reverse the order of letters formed by the range $$$[i,i+k-1]$$$ of the string. Formally, if the string currently is equal to $$$s_1\ldots s_{i-1}s_is_{i+1}\ldots s_{i+k-2}s_{i+k-1}s_{i+k}\ldots s_{n-1}s_n$$$, change it to $$$s_1\ldots s_{i-1}s_{i+k-1}s_{i+k-2}\ldots s_{i+1}s_is_{i+k}\ldots s_{n-1}s_n$$$.

You can make as many steps as you want (possibly, zero). Your task is to find the lexicographically smallest string you can obtain after some number of steps.

A string $$$a$$$ is lexicographically smaller than a string $$$b$$$ of the same length if and only if the following holds:

  • in the first position where $$$a$$$ and $$$b$$$ differ, the string $$$a$$$ has a letter that appears earlier in the alphabet than the corresponding letter in $$$b$$$.

Input

Each test contains multiple test cases. The first line contains the number of test cases $$$t$$$ ($$$1 \le t \le 10^4$$$). The description of the test cases follows.

The first line of each test case contains two integers $$$n$$$ and $$$k$$$ ($$$1 \le k < n \le 10^5$$$).

The second line of each test case contains the string $$$s$$$ of length $$$n$$$ consisting of lowercase English letters.

It is guaranteed that the sum of $$$n$$$ over all test cases does not exceed $$$10^5$$$.

Output

For each test case, print the lexicographically smallest string after doing some (possibly, zero) steps.

Example

Input

5

4 2

nima

5 3

panda

9 2

theforces

7 3

amirfar

6 4

rounds

Output

aimnaandpceefhorstaafmirrdnorsu

Note

In the first test case, we can obtain the string "aimn" using the following operations:

  1. Reverse the range $$$[3,4]$$$. The string turns into "niam".
  2. Swap $$$s_1$$$ and $$$s_3$$$. The string turns into "ainm".
  3. Reverse the range $$$[3,4]$$$. The string turns into "aimn".

It can be proven that we cannot obtain any string lexicographically smaller than "aimn". Therefore, "aimn" is the answer.

In the second test case, we can obtain the string "aandp" using the following operations:

  1. Swap $$$s_3$$$ and $$$s_5$$$. The string turns into "paadn".
  2. Swap $$$s_1$$$ and $$$s_3$$$. The string turns into "aapdn".
  3. Swap $$$s_3$$$ and $$$s_5$$$. The string turns into "aandp".

It can be proven that we cannot obtain any string lexicographically smaller than "aandp". Therefore, "aandp" is the answer.

"); $(this).append($copy); const clipboard = new Clipboard('#' + cpyId, { text: function (trigger) { const pre = document.querySelector('#' + preId); const lines = pre.querySelectorAll(".test-example-line"); return Codeforces.filterClipboardText(pre.innerText, lines.length); } }); const isInput = $(this).parent().hasClass("input"); clipboard.on('success', function (e) { if (isInput) { Codeforces.showMessage("The example input has been copied into the clipboard"); } else { Codeforces.showMessage("The example output has been copied into the clipboard"); } e.clearSelection(); }); }); $(".test-form-item input").change(function () { addPendingSubmissionMessage($($(this).closest("form")), "You changed the answer, do not forget to submit it if you want to save the changes"); const index = $(this).closest(".problemindexholder").attr("problemindex"); let test = ""; $(this).closest("form input").each(function () { const test_ = $(this).attr("name"); if (test_ && test_.substring(0, 4) === "test") { test = test_; } }); if (index.length > 0 && test.length > 0) { const indexTest = index + "::" + test; window.changedTests.add(indexTest); } }); $(window).on('beforeunload', function () { if (window.changedTests.size > 0) { return 'Dialog text here'; } }); autosize($('.test-explanation textarea')); $(".test-example-line").hover(function() { $(this).attr("class").split(" ").forEach((clazz) => { if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") { let end = clazz.substr("test-example-line-".length); if (end !== "even" && end !== "odd" && end !== "0") { let top = 1E20; let left = 1E20; let problem = $(this).closest(".problemindexholder"); $(this).closest(".input").find("." + clazz).css("background-color", "#FFFDE7").each(function() { top = Math.min(top, $(this).offset().top); left = Math.min(left, $(this).offset().left); }); let testCaseMarker = problem.find(".testCaseMarker_" + end); if (testCaseMarker.length === 0) { const html = "

"; problem.append($(html)); testCaseMarker = problem.find(".testCaseMarker_" + end); } if (testCaseMarker) { testCaseMarker.show() .offset({top, left: left - 20}) .text(end); } } } }); }, function() { $(this).attr("class").split(" ").forEach((clazz) => { if (clazz.substr(0, "test-example-line-".length) === "test-example-line-") { let end = clazz.substr("test-example-line-".length); if (end !== "even" && end !== "odd" && end !== "0") { $("." + clazz).css("background-color", ""); $(this).closest(".problemindexholder").find(".testCaseMarker_" + end).hide(); } } }); }); });

Problem - 1864B - Codeforces (2024)

FAQs

Who has solved the most problems on Codeforces? ›

2- The maximum number of unsuccessful submissions before getting a problem accept in a contests is 81, made by shahbox in Codeforces Beta Round 44 (Div. 2): standings 518th place. 3- The user who solved the maximum number of problems during all Codeforces contests is Egor, he solved 453 problems.

How to come up with solutions in Codeforces? ›

Try the following techniques, some of them can often come handy.
  1. Technique 1: "Total Recall" ...
  2. Technique 2: "From Specific to General" ...
  3. Technique 3: "Bold Hypothesis" ...
  4. Technique 4: "To solve a problem, you should think like a problem" ...
  5. Technique 5: "Think together" ...
  6. Technique 6: "Pick a Method"

Who is the best coder on Codeforces? ›

Z0RR0's blog
RankHandleFollower
1.tourist14082
2.Petr6430
3.jqdai08154202
4.rajat16033074
157 more rows

Which is tougher codechef or Codeforces? ›

Codeforces has 6 -7 problems in a round(Except Global rounds and Div3 rounds) while codechef sticks to 5 problems. Also the time in codeforces is less compared to codechef. Codeforces has contests which are generally of 2hrs.

Who has highest rating in Codeforces? ›

MikeMirzayanov's blog
#UserRating
1tourist3845
2jiangly3707
3Benq3630
4orzdevinwang3573
6 more rows

Who is the CEO of Codeforces? ›

Codeforces
Type of siteCompetitive programming
Country of originRussia
OwnerMikhail Mirzayanov
Created byMikhail Mirzayanov
URLcodeforces.com
5 more rows

What is the prize money for the Codeforces? ›

First place and $10000: tourist (for the fifth time!) Second place and $3500: maroonrk. Third place and $500: ecnerwala.

Which editor is best for competitive programming Codeforces? ›

CP Editor is Fast written in Native C++ (Qt), Cross-platform (works everywhere), and has all basic features that a competitive programmer needs from an editor. CP Editor takes away your responsibility of compiling the code and running it on your sample test cases.

Top Articles
Latest Posts
Article information

Author: Fr. Dewey Fisher

Last Updated:

Views: 6321

Rating: 4.1 / 5 (42 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Fr. Dewey Fisher

Birthday: 1993-03-26

Address: 917 Hyun Views, Rogahnmouth, KY 91013-8827

Phone: +5938540192553

Job: Administration Developer

Hobby: Embroidery, Horseback riding, Juggling, Urban exploration, Skiing, Cycling, Handball

Introduction: My name is Fr. Dewey Fisher, I am a powerful, open, faithful, combative, spotless, faithful, fair person who loves writing and wants to share my knowledge and understanding with you.