coderforce#382div2

由于水平有限,只做出了三道题。

第一题:A. Ostap and Grasshopper

水题,简单搜索,甚至算不上搜索,直接上代码:

#include <iostream>
#include <stdio.h>
#include <string.h>

using namespace std;
char s[105];
int n,k;

int main()
{
    while(scanf("%d%d",&n,&k)!=EOF){
        getchar();
        scanf("%s",s);
        int i,len;
        len =strlen(s);
        int p,q;
        int flag=1;
        for(i=0;i<len;i++){
            if(s[i]=='G') p=i;
            if(s[i]=='T') q=i;
        }
        int j=p;
        if(p<q){
            while(1){
                j+=k;
                if(s[j]==s[q]) break;
                if(j>=len){
                    flag=0;
                    break;
                }
                if(s[j]=='#'){
                    flag=0;
                    break;
                }
            }
        }
        else if(p>q){
            while(1){
                 j-=k;
                if(s[j]==s[q]) break;
                if(j<0){
                    flag=0;
                    break;
                }
                if(s[j]=='#'){
                    flag=0;
                    break;
                }
            }
        }
        if(flag) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
    return 0;
}
第二题:大致意思是N个人,身上有不同的财富,有两个城市,每个城市可以住n1和n2个人,问怎么去居住才能使两个城市的财富值平均值最大。

思路:财富大的分给人数少的,财富小的分给人数多的就行了:

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 nn1 and n2 (1 ≤ n, n1, n2 ≤ 100 000n1 + 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


#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;

const int siz=1e5+5;
int a[siz];
int n,n1,n2;

int main()
{
    while(scanf("%d%d%d",&n,&n1,&n2)!=EOF){
        int i;
        for(i=0;i<n;i++){
            scanf("%d",&a[i]);
        }
        int t;
        if(n1>n2){
            t=n1;
            n1=n2;
            n2=t;
        }
        sort(a,a+n);
        int k=0;
        double sum1=0,sum2=0;
        for(i=n-1;;i--){
            sum1+=a[i];
            ++k;
            if(k==n1){
                break;
            }
        }
        k=0;
        while(i--){
            sum2+=a[i];
            ++k;
            if(k==n2) break;
        }
        double ans=sum1*1.0/n1+sum2*1.0/n2;
        printf("%f\n",ans);
    }
    return 0;
}
第四题:大意:有一定数量的钱,但是要交这个数量除本身外最大因子的税,但是我们可以把这些钱分成若干份,然后按照分好后的钱再去交税,要求计算出最少要交的税是多少。

思路:素数除本身外的最大因子是1,所以如果是素数就输出1,。偶数可以分成两个素数之后,所以只要是偶数就输出2,但是2除外,它是素数,所以是1。但是如果是奇数就要分成是素数和不是素数,是素数就输出1,不是素数又要分成这个奇数能否分成一个2加另一个素数的和,如果可以就输出2,不能的话这个奇数就必定分解成三个素数之和(奇数加偶数是奇数,奇数加奇数加奇数也是奇数)。

题目:

D. Taxes
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Mr. Funt now lives in a country with a very specific tax laws. The total income of mr. Funt during this year is equal to n (n ≥ 2) burles and the amount of tax he has to pay is calculated as the maximum divisor of n (not equal to n, of course). For example, if n = 6 then Funt has to pay 3 burles, while for n = 25 he needs to pay 5 and if n = 2 he pays only 1 burle.

As mr. Funt is a very opportunistic person he wants to cheat a bit. In particular, he wants to split the initial n in several parts n1 + n2 + ... + nk = n (here k is arbitrary, even k = 1 is allowed) and pay the taxes for each part separately. He can't make some part equal to 1 because it will reveal him. So, the condition ni ≥ 2 should hold for all i from 1 to k.

Ostap Bender wonders, how many money Funt has to pay (i.e. minimal) if he chooses and optimal way to split n in parts.

Input

The first line of the input contains a single integer n (2 ≤ n ≤ 2·109) — the total year income of mr. Funt.

Output

Print one integer — minimum possible number of burles that mr. Funt has to pay as a tax.

Examples
input
4
output
2
input
27
output
3
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int prim(int n){
    int flag=1;
    int k=sqrt(n)+1;
    if(n==1||n==2) return flag;

    else{
        int i;
        for(i=2;i<=k;i++){
            if(n%i==0){
                flag=0;
                break;
            }
        }
    }
    return flag;
}
int main()
{

   int n;
   while(scanf("%d",&n)!=EOF){
    if(n%2==0&&n!=2){
        printf("2\n");
    }
    else{
        if(prim(n)==1){
            printf("1\n");
        }
        else{
            if(prim(n-2)==1){
                printf("2\n");
            }
            else{
               printf("3\n");
            }

        }
    }
   }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值