Codeforces Round #382 (Div. 2)(A+B)模拟

A. Ostap and Grasshopper

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length n such that some cells of this line are empty and some contain obstacles. Then, he places his grasshopper to one of the empty cells and a small insect in another empty cell. The grasshopper wants to eat the insect.

Ostap knows that grasshopper is able to jump to any empty cell that is exactly k cells away from the current (to the left or to the right). Note that it doesn’t matter whether intermediate cells are empty or not as the grasshopper makes a jump over them. For example, if k = 1 the grasshopper can jump to a neighboring cell only, and if k = 2 the grasshopper can jump over a single cell.

Your goal is to determine whether there is a sequence of jumps such that grasshopper will get from his initial position to the cell with an insect.

Input

The first line of the input contains two integers n and k (2 ≤ n ≤ 100, 1 ≤ k ≤ n - 1) — the number of cells in the line and the length of one grasshopper’s jump.

The second line contains a string of length n consisting of characters ‘.’, ‘#’, ‘G’ and ‘T’. Character ‘.’ means that the corresponding cell is empty, character ‘#’ means that the corresponding cell contains an obstacle and grasshopper can’t jump there. Character ‘G’ means that the grasshopper starts at this position and, finally, ‘T’ means that the target insect is located at this cell. It’s guaranteed that characters ‘G’ and ‘T’ appear in this line exactly once.

Output

If there exists a sequence of jumps (each jump of length k), such that the grasshopper can get from his initial position to the cell with the insect, print “YES” (without quotes) in the only line of the input. Otherwise, print “NO” (without quotes).

Examples

Input
5 2
‘#G#T#

Output
YES

Input
6 1
T….G

Output
YES

Input
7 3
T..#..G

Output
NO

Input
6 2
..GT..

Output
NO

Note

In the first sample, the grasshopper can make one jump to the right in order to get from cell 2 to cell 4.

In the second sample, the grasshopper is only able to jump to neighboring cells but the way to the insect is free — he can get there by jumping left 5 times.

In the third sample, the grasshopper can’t make a single jump.

In the fourth sample, the grasshopper can only jump to the cells with odd indices, thus he won’t be able to reach the insect.
题意:给你一个长为n的字符串,你的跳跃能力为k,’G’为起点,‘T’为终点,’#’为不可着陆点,’.’为地面,问能否达到终点。
题解:
模拟过程即可。
代码:

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int main()
{
    int n,k;
    string str;
    cin>>n>>k;
    cin>>str;
    int a,b;
    for(int i=0;i<n;i++)
    {
        if(str[i]=='G')
            a=i;
        if(str[i]=='T')
            b=i;
    }
    if(a>b)
        swap(a,b);
        int i;
        bool flag=true;
    for(i=a;i<b;i+=k)
    {
        if(str[i]=='#')
            flag=false;
    }
    if(i!=b)
        flag=false;
    if(flag)
        cout<<"YES"<<endl;
    else
        cout<<"NO"<<endl;
}

B. Urbanization

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

Local authorities have heard a lot about combinatorial abilities of Ostap Bender so they decided to ask his help in the question of urbanization. There are n people who plan to move to the cities. The wealth of the i of them is equal to ai. Authorities plan to build two cities, first for n1 people and second for n2 people. Of course, each of n candidates can settle in only one of the cities. Thus, first some subset of candidates of size n1 settle in the first city and then some subset of size n2 is chosen among the remaining candidates and the move to the second city. All other candidates receive an official refuse and go back home.

To make the statistic of local region look better in the eyes of their bosses, local authorities decided to pick subsets of candidates in such a way that the sum of arithmetic mean of wealth of people in each of the cities is as large as possible. Arithmetic mean of wealth in one city is the sum of wealth ai among all its residents divided by the number of them (n1 or n2 depending on the city). The division should be done in real numbers without any rounding.

Please, help authorities find the optimal way to pick residents for two cities.

Input

The first line of the input contains three integers n, n1 and n2 (1 ≤ n, n1, n2 ≤ 100 000, n1 + n2 ≤ n) — the number of candidates who want to move to the cities, the planned number of residents of the first city and the planned number of residents of the second city.

The second line contains n integers a1, a2, …, an (1 ≤ ai ≤ 100 000), the i-th of them is equal to the wealth of the i-th candidate.

Output

Print one real value — the maximum possible sum of arithmetic means of wealth of cities’ residents. You answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Namely: let’s assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

Examples

Input
2 1 1
1 5

Output
6.00000000

Input
4 2 1
1 4 2 3

Output
6.50000000

Note

In the first sample, one of the optimal solutions is to move candidate 1 to the first city and candidate 2 to the second.

In the second sample, the optimal solution is to pick candidates 3 and 4 for the first city, and candidate 2 for the second one. Thus we obtain (a3 + a4) / 2 + a2 = (3 + 2) / 2 + 4 = 6.5
题意:n个人,有自己的财富值ai,城市1能容纳n1人,城市2能容纳n2人。(必须住满)。两个城市的人均财富值和最大为多少。
题解:贪心。把富有的首先放在容纳小的即可。
题解:

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int main()
{
    int n,n1,n2;
    scanf("%d%d%d",&n,&n1,&n2);
    int a[100009];
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i]);
    }
    sort(a+1,a+1+n);
    reverse(a+1,a+1+n);
    if(n1>n2)
        swap(n1,n2);
    double ans=0;
    int i=1;
    double sum=0;
    int x=n1;
    int y=n2;
    while(n1--)
    {
        sum+=a[i++];
    }
    ans+=sum/x;
    sum=0;
    while(n2--)

    {
        sum+=a[i++];
    }
    ans+=sum/y;
    printf("%.8lf\n",ans);

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值