Codeforces Round #363 (Div. 2) (A,B,C)

A. Launch of Collider
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. n particles will be launched inside it. All of them are located in a straight line and there can not be two or more particles located in the same point. The coordinates of the particles coincide with the distance in meters from the center of the collider, xi is the coordinate of the i-th particle and its position in the collider at the same time. All coordinates of particle positions are even integers.

You know the direction of each particle movement — it will move to the right or to the left after the collider's launch start. All particles begin to move simultaneously at the time of the collider's launch start. Each particle will move straight to the left or straight to the right with the constant speed of 1 meter per microsecond. The collider is big enough so particles can not leave it in the foreseeable time.

Write the program which finds the moment of the first collision of any two particles of the collider. In other words, find the number of microseconds before the first moment when any two particles are at the same point.

Input

The first line contains the positive integer n (1 ≤ n ≤ 200 000) — the number of particles.

The second line contains n symbols "L" and "R". If the i-th symbol equals "L", then the i-th particle will move to the left, otherwise the i-th symbol equals "R" and the i-th particle will move to the right.

The third line contains the sequence of pairwise distinct even integers x1, x2, ..., xn (0 ≤ xi ≤ 109) — the coordinates of particles in the order from the left to the right. It is guaranteed that the coordinates of particles are given in the increasing order.

Output

In the first line print the only integer — the first moment (in microseconds) when two particles are at the same point and there will be an explosion.

Print the only integer -1, if the collision of particles doesn't happen.

Examples
input
4
RLRL
2 4 6 10
output
1
input
3
LLR
40 50 60
output
-1
Note

In the first sample case the first explosion will happen in 1 microsecond because the particles number 1 and 2 will simultaneously be at the same point with the coordinate 3.

In the second sample case there will be no explosion because there are no particles which will simultaneously be at the same point.

#include <bits/stdc++.h>

using namespace std;
int a[200005];
int main()
{
    int n;
    string ch;
    cin>>n;
    cin>>ch;
    for(int i=0;i<=n-1;i++)
        cin>>a[i];
    int ans=1<<30;
    for(int i=0;i<=n-1;i++)
    {
        if(ch[i]=='R'&&ch[i+1]=='L')
            ans=min(ans,(a[i+1]-a[i])/2);
    }
    if(ans==1<<30)
        cout<<-1<<endl;
    else
        cout<<ans<<endl;
    return 0;
}

B. One Bomb
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a description of a depot. It is a rectangular checkered field of n × m size. Each cell in a field can be empty (".") or it can be occupied by a wall ("*").

You have one bomb. If you lay the bomb at the cell (x, y), then after triggering it will wipe out all walls in the row x and all walls in the column y.

You are to determine if it is possible to wipe out all walls in the depot by placing and triggering exactly one bomb. The bomb can be laid both in an empty cell or in a cell occupied by a wall.

Input

The first line contains two positive integers n and m (1 ≤ n, m ≤ 1000) — the number of rows and columns in the depot field.

The next n lines contain m symbols "." and "*" each — the description of the field. j-th symbol in i-th of them stands for cell (i, j). If the symbol is equal to ".", then the corresponding cell is empty, otherwise it equals "*" and the corresponding cell is occupied by a wall.

Output

If it is impossible to wipe out all walls by placing and triggering exactly one bomb, then print "NO" in the first line (without quotes).

Otherwise print "YES" (without quotes) in the first line and two integers in the second line — the coordinates of the cell at which the bomb should be laid. If there are multiple answers, print any of them.

Examples
input
3 4
.*..
....
.*..
output
YES
1 2
input
3 3
..*
.*.
*..
output
NO
input
6 5
..*..
..*..
*****
..*..
..*..
..*..
output
YES
3 3

#include <bits/stdc++.h>
using namespace std;
char ch[1005][1005],ch1[1005][1005];
int row[1005],col[1005],n,m,flag=1;
bool judge(int x,int y,int k)
{
    flag=1;
    for(int i=1;i<=n;i++)
        k==0?ch[i][y]='.':ch1[i][y]='.';
    for(int i=1;i<=m;i++)
        (k==0)?ch[x][i]='.':ch1[x][i]='.';
    for(int i=1;i<=n;i++)
    for(int j=1;j<=m;j++)
    {
        if(!k&&ch[i][j]=='*'||k&&ch1[i][j]=='*')
        {
            flag=0;
            break;
        }
    }
    if(flag==0)
        return false;
    return true;
}
int main()
{

    int  x1=0,y1=0,x2=0,y2=0,num=0;
    scanf("%d %d",&n,&m);
    for(int i=1;i<=n;i++)
    {
       scanf("%s",ch[i]+1);
       strcpy(ch1[i]+1,ch[i]+1);
    }
    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
    {
        if(ch[i][j]=='*')
        {
            num++;
            if(!x1){x1=x2=i;y1=y2=j;}
            else
            {
                if(x1!=i&&y1!=j)
                {
                    x2=i;
                    y2=j;
                    break;
                }
            }
        }
    }
    //cout<<x1<<" "<<y1<<endl;
    //cout<<x2<<" "<<y2<<endl;
    if(num==1)
    {
        cout<<"YES"<<endl;
        cout<<x1<<" "<<y1<<endl;
    }
    else if(num==0)
    {
        cout<<"YES"<<endl;
        cout<<1<<" "<<1<<endl;
    }
    else if(judge(x1,y2,0))
    {
        cout<<"YES"<<endl;
        cout<<x1<<" "<<y2<<endl;
    }
    else if(judge(x2,y1,1))
    {
        cout<<"YES"<<endl;
        cout<<x2<<" "<<y1<<endl;
    }
    else
        cout<<"NO"<<endl;
    return 0;
}
C. Vacations
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya has n days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this n days: whether that gym opened and whether a contest was carried out in the Internet on that day. For the i-th day there are four options:

  1. on this day the gym is closed and the contest is not carried out;
  2. on this day the gym is closed and the contest is carried out;
  3. on this day the gym is open and the contest is not carried out;
  4. on this day the gym is open and the contest is carried out.

On each of days Vasya can either have a rest or write the contest (if it is carried out on this day), or do sport (if the gym is open on this day).

Find the minimum number of days on which Vasya will have a rest (it means, he will not do sport and write the contest at the same time). The only limitation that Vasya has — he does not want to do the same activity on two consecutive days: it means, he will not do sport on two consecutive days, and write the contest on two consecutive days.

Input

The first line contains a positive integer n (1 ≤ n ≤ 100) — the number of days of Vasya's vacations.

The second line contains the sequence of integers a1, a2, ..., an (0 ≤ ai ≤ 3) separated by space, where:

  • ai equals 0, if on the i-th day of vacations the gym is closed and the contest is not carried out;
  • ai equals 1, if on the i-th day of vacations the gym is closed, but the contest is carried out;
  • ai equals 2, if on the i-th day of vacations the gym is open and the contest is not carried out;
  • ai equals 3, if on the i-th day of vacations the gym is open and the contest is carried out.
Output

Print the minimum possible number of days on which Vasya will have a rest. Remember that Vasya refuses:

  • to do sport on any two consecutive days,
  • to write the contest on any two consecutive days.
Examples
input
4
1 3 2 0
output
2
input
7
1 3 3 2 1 2 3
output
0
input
2
2 2
output
1
Note

In the first test Vasya can write the contest on the day number 1 and do sport on the day number 3. Thus, he will have a rest for only 2 days.

In the second test Vasya should write contests on days number 1, 3, 5 and 7, in other days do sport. Thus, he will not have a rest for a single day.

In the third test Vasya can do sport either on a day number 1 or number 2. He can not do sport in two days, because it will be contrary to the his limitation. Thus, he will have a rest for only one day.

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <vector>
#include <queue>
#define maxn 105
#define inf 1<<30
#define loop(a,b,c) for(int a=b;a<=c;a++)
using namespace std;
int a[maxn],dp[maxn][5];
int main()
{
    //freopen("data","r",stdin);
    int n;
    cin>>n;
    loop(i,1,n) cin>>a[i];
    loop(i,0,n)
        loop(j,0,2)
        dp[i][j]=(i==0)?0:inf;
    loop(i,1,n){
                    dp[i][0]=min(dp[i-1][0],min(dp[i-1][1],dp[i-1][2]))+1;
        if(a[i]==1||a[i]==3) dp[i][1]=min(dp[i-1][0],dp[i-1][2]);
        if(a[i]==2||a[i]==3) dp[i][2]=min(dp[i-1][0],dp[i-1][1]);
    }
    cout<<min(dp[n][0],min(dp[n][1],dp[n][2]))<<endl;
    return 0;
}



利用 TensorFlow 训练自己的目标识别器。本文内容来自于我的毕业设计,基于 TensorFlow 1.15.0,其他 TensorFlow 版本运行可能存在问题。.zip项目工程资源经过严格测试可直接运行成功且功能正常的情况才上传,可轻松复刻,拿到资料包后可轻松复现出一样的项目,本人系统开发经验充足(全领域),有任何使用问题欢迎随时与我联系,我会及时为您解惑,提供帮助。 【资源内容】:包含完整源码+工程文件+说明(如有)等。答辩评审平均分达到96分,放心下载使用!可轻松复现,设计报告也可借鉴此项目,该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的。 【提供帮助】:有任何使用问题欢迎随时与我联系,我会及时解答解惑,提供帮助 【附带帮助】:若还需要相关开发工具、学习资料等,我会提供帮助,提供资料,鼓励学习进步 【项目价值】:可用在相关项目设计中,皆可应用在项目、毕业设计、课程设计、期末/期中/大作业、工程实训、大创等学科竞赛比赛、初期项目立项、学习/练手等方面,可借鉴此优质项目实现复刻,设计报告也可借鉴此项目,也可基于此项目来扩展开发出更多功能 下载后请首先打开README文件(如有),项目工程可直接复现复刻,如果基础还行,也可在此程序基础上进行修改,以实现其它功能。供开源学习/技术交流/学习参考,勿用于商业用途。质量优质,放心下载使用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值