ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Codeforces Round #617 (Div. 3) C.Yet Another Walking Robot

2020-02-06 10:38:38  阅读:331  来源: 互联网

标签:Walking point int robot Robot substring test path 617


Codeforces Round #617 (Div. 3) C.Yet Another Walking Robot

There is a robot on a coordinate plane. Initially, the robot is located at the point (0,0). Its path is described as a string s of length n consisting of characters ‘L’, ‘R’, ‘U’, ‘D’.

Each of these characters corresponds to some move:

‘L’ (left): means that the robot moves from the point (x,y) to the point (x−1,y);
‘R’ (right): means that the robot moves from the point (x,y) to the point (x+1,y);
‘U’ (up): means that the robot moves from the point (x,y) to the point (x,y+1);
‘D’ (down): means that the robot moves from the point (x,y) to the point (x,y−1).
The company that created this robot asked you to optimize the path of the robot somehow. To do this, you can remove any non-empty substring of the path. But this company doesn’t want their customers to notice the change in the robot behavior. It means that if before the optimization the robot ended its path at the point (xe,ye), then after optimization (i.e. removing some single substring from s) the robot also ends its path at the point (xe,ye).

This optimization is a low-budget project so you need to remove the shortest possible non-empty substring to optimize the robot’s path such that the endpoint of his path doesn’t change. It is possible that you can’t optimize the path. Also, it is possible that after the optimization the target path is an empty string (i.e. deleted substring is the whole string s).

Recall that the substring of s is such string that can be obtained from s by removing some amount of characters (possibly, zero) from the prefix and some amount of characters (possibly, zero) from the suffix. For example, the substrings of “LURLLR” are “LU”, “LR”, “LURLLR”, “URL”, but not “RR” and “UL”.

You have to answer t independent test cases.

Input

The first line of the input contains one integer t (1≤t≤1000) — the number of test cases.

The next 2t lines describe test cases. Each test case is given on two lines. The first line of the test case contains one integer n (1n2105)(1≤n≤2⋅10^5)(1≤n≤2⋅105) — the length of the robot’s path. The second line of the test case contains one string s consisting of n characters ‘L’, ‘R’, ‘U’, ‘D’ — the robot’s path.

It is guaranteed that the sum of n over all test cases does not exceed 2105(n2105)2⋅10^5 (∑n≤2⋅10^5)2⋅105(∑n≤2⋅105).

Output

For each test case, print the answer on it. If you cannot remove such non-empty substring that the endpoint of the robot’s path doesn’t change, print -1. Otherwise, print two integers l and r such that 1≤l≤r≤n — endpoints of the substring you remove. The value r−l+1 should be minimum possible. If there are several answers, print any of them.

Example

input

4
4
LRUD
4
LURD
5
RRUDU
5
LLDDR

output

1 2
1 4
3 4
-1

这道题比较考验思维,我个人想的就是直接模拟,当有点被经过大于等于两次时,就更新一下l和r,l即为原位置+1,r即为当前位置+1,AC代码如下:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
map<pair<int,int>,int>m,cnt;//m记录位置,cnt记录出现次数
int l,r;
void judge(int x,int y,int i){
    cnt[make_pair(x,y)]++;
    if(cnt[make_pair(x,y)]>1){
        int a=m[make_pair(x,y)]+1,b=i+1;
        if((b-a)<(r-l)){
            l=a;
            r=b;
        }
    }
    m[make_pair(x,y)]=i+1;
}

int main(){
    int t,n;
    cin>>t;
    while(t--){
        l=0,r=1e9;
        cin>>n;
        string s;
        cin>>s;
        int x=0,y=0;
        m[make_pair(0,0)]=0;
        cnt[make_pair(0,0)]=1;
        for(int i=0;i<n;i++){
            if(s[i]=='L') {x--;judge(x,y,i);}
            if(s[i]=='R') {x++;judge(x,y,i);}
            if(s[i]=='U') {y++;judge(x,y,i);}
            if(s[i]=='D') {y--;judge(x,y,i);}
        }
        if(l==0 && r==1e9) puts("-1");
        else cout<<l<<" "<<r<<endl;
        m.clear();cnt.clear();
    }
}
旺 崽 发布了262 篇原创文章 · 获赞 13 · 访问量 2万+ 私信 关注

标签:Walking,point,int,robot,Robot,substring,test,path,617
来源: https://blog.csdn.net/qq_43765333/article/details/104192539

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有