zoukankan      html  css  js  c++  java
  • 2017 CCPC秦皇岛 L题 One Dimensions Dave

    BaoBao is trapped in a one-dimensional maze consisting of  grids arranged in a row! The grids are numbered from 1 to  from left to right, and the -th grid is marked with a character , where  is either 'L' or 'R'.

    Starting from the -th grid, BaoBao will repeatedly take the following steps until he escapes the maze:

    • If BaoBao is in the 1st grid or the -th grid, then BaoBao is considered to arrive at the exit and thus can escape successfully.
    • Otherwise, let BaoBao be in the -th grid. If , BaoBao will move to the -th grid; If , Baobao will move to the -th grid.

    Before taking the above steps, BaoBao can change the characters in some grids to help himself escape. Concretely speaking, for the -th grid, BaoBao can change from 'L' to 'R', or from 'R' to 'L'.

    But changing characters in grids is a tiring job. Your task is to help BaoBao calculate the minimum number of grids he has to change to escape the maze.

    Input

    There are multiple test cases. The first line of the input contains an integer , indicating the number of test cases. For each test case:

    The first line contains two integers  and  (), indicating the number of grids in the maze, and the index of the starting grid.

    The second line contains a string  () consisting of characters 'L' and 'R'. The -th character of  indicates the character in the -th grid.

    It is guaranteed that the sum of  over all test cases will not exceed .

    <h4< dd="">Output

    For each test case output one line containing one integer, indicating the minimum number of grids BaoBao has to change to escape the maze.

    <h4< dd="">Sample Input

    3
    3 2
    LRL
    10 4
    RRRRRRRLLR
    7 4
    RLLRLLR

    <h4< dd="">Sample Output

    0
    2
    1

    <h4< dd="">Hint

    For the first sample test case, BaoBao doesn't have to change any character and can escape from the 3rd grid. So the answer is 0.

    For the second sample test case, BaoBao can change  to 'R' and  to 'R' and escape from the 10th grid. So the answer is 2.

    For the third sample test case, BaoBao can change  to 'L' and escape from the 1st grid. So the answer is 1.

    题解:签到题;分别往两边走即可;去最小值

    参考代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int t,n,m;
     4 int L(string s)
     5 {
     6     int sum=0;
     7     for(int i=m-1;i>0;i--) if(s[i]=='R') sum++;
     8     return sum;
     9 }int R(string s)
    10 {
    11     int sum=0;
    12     for(int i=m-1;i<n-1;i++) if(s[i]=='L') sum++;
    13     return sum;
    14 }
    15 int main()
    16 {
    17     string s;
    18     cin>>t;
    19     while(t--&&cin>>n>>m>>s) printf("%d
    ",R(s)>L(s)?L(s):R(s));
    20     return 0;
    21 }
    View Code

      

  • 相关阅读:
    unix/linux中如何在vi编辑器中方便的跳转到首行和末行?
    如何在Ubuntu中用firefox浏览器查看chm文档?
    sybase数据库技术 :游标可更新与for read only/for update
    PropertyMetadata和UIPropertyMetadata的一点区别
    wpf,离线状态下部分功能不可用。
    C#操作注册服务卸载服务启动服务停止服务.. .
    ContentControl与ContentPresenter区别?
    wpf telerik中的book控件
    C#写入和读出文本文件
    WPF 点击Calendar后,需要点击两次按钮
  • 原文地址:https://www.cnblogs.com/csushl/p/9787777.html
Copyright © 2011-2022 走看看