博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Snow Footprints CodeForces - 298A
阅读量:4595 次
发布时间:2019-06-09

本文共 2006 字,大约阅读时间需要 6 分钟。

There is a straight snowy road, divided into n blocks. The blocks are numbered from 1 to n from left to right. If one moves from the i-th block to the (i + 1)-th block, he will leave a right footprint on the i-th block. Similarly, if one moves from the i-th block to the (i - 1)-th block, he will leave a left footprint on the i-th block. If there already is a footprint on the i-th block, the new footprint will cover the old one.

At the beginning, there were no footprints. Then polar bear Alice starts from the s-th block, makes a sequence of moves and ends in the t-th block. It is known that Alice never moves outside of the road.

You are given the description of Alice's footprints. Your task is to find a pair of possible values of s, t by looking at the footprints.

Input

The first line of the input contains integer n (3 ≤ n ≤ 1000).

The second line contains the description of the road — the string that consists of n characters. Each character will be either "." (a block without footprint), or "L" (a block with a left footprint), "R" (a block with a right footprint).

It's guaranteed that the given string contains at least one character not equal to ".". Also, the first and the last character will always be ".". It's guaranteed that a solution exists.

Output

Print two space-separated integers — the values of s and t. If there are several possible solutions you can print any of them.

Example

Input
9 ..RRLL...
Output
3 4
Input
11 .RRRLLLLL..
Output
7 5

Note

The first test sample is the one in the picture.

1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 typedef long long ll; 8 9 const int INF=100000;10 11 int main()12 { int n;13 cin>>n;14 char a[1005];15 scanf("%s",a);16 int len=strlen(a),rp=INF,rq=-1,lp=INF,lq=-1;17 for(int i=0;i

 

转载于:https://www.cnblogs.com/zgglj-com/p/7257982.html

你可能感兴趣的文章
Thread类的使用
查看>>
Unity-NGUI UILabel换行
查看>>
L1-027 出租
查看>>
刷题总结——蚯蚓(NOIP2016DAY2T2)
查看>>
idea @Override is not allowed when implementing interface method
查看>>
javaScript常用知识点有哪些
查看>>
OpenCV调用摄像头 , 人脸检测demo
查看>>
大数据的本质
查看>>
你真的无聊透顶么?不见得
查看>>
软工每日总结30
查看>>
策略模式
查看>>
负载均衡中使用 Redis 实现共享 Session
查看>>
[转载]用纯css改变下拉列表select框的默认样式
查看>>
Content-Type boundary 问题
查看>>
Filestream/Windows Share导致Alwayson Failover失败
查看>>
What is State of Art?
查看>>
实验二
查看>>
angularJs项目实战!02:前端的页面分解与组装
查看>>
再谈组合
查看>>
代码编程题
查看>>