HNUOJ13302和13308贪心枚举有俩种情况的想办法直接枚举俩种情况每次枚举比较值

13302:

#include<algorithm>
#include<iostream>
#include<limits.h>
#include<stdlib.h>
#include<string.h>
#include<complex>
#include<cstring>
#include<iomanip>
#include<stdio.h>
#include<bitset>
#include<cctype>
#include<math.h>
#include<string>
#include<time.h>
#include<vector>
#include<cmath>
#include<queue>
#include<stack>
#include<list>
#include<map>
#include<set>

#define LL long long

using namespace std;
const LL mod = 1e9 + 7;
const double PI = acos(-1.0);
const double E = exp(1.0);
const int M = 1e6 + 5;

string s;
int dis[M];

int main()
{
    LL a, b;
    while( cin >> a >> b ){
        cin >> s;
        b = a - b;
        int len = s.size();
        int sum = 0;
        memset(dis, 0, sizeof(dis));
        for(int i = 0; i < len; ++i){
            if(s[i] == 'B'){
                sum++;
                dis[sum] = i + 1;
            }
        }
        if(sum == 0){
            puts("0");
            continue;
        }
        LL mn = 1e11;
        LL ans;
        for(int i = 0; i <= sum; ++i){
            ans = (LL)(i * a);
            for(int j = 1; j <= sum - i; j++){
                if(dis[j] > j + i)
                    ans += (LL)(b * (dis[j] - j - i));
            }
            mn = min(mn, ans);
        }
        cout << mn << endl;
    }
    return 0;
}
13308:

#include<algorithm>
#include<iostream>
#include<limits.h>
#include<stdlib.h>
#include<string.h>
#include<complex>
#include<cstring>
#include<iomanip>
#include<stdio.h>
#include<bitset>
#include<cctype>
#include<math.h>
#include<string>
#include<time.h>
#include<vector>
#include<cmath>
#include<queue>
#include<stack>
#include<list>
#include<map>
#include<set>

#define LL long long

using namespace std;
const LL mod = 1e9 + 7;
const double PI = acos(-1.0);
const double E = exp(1.0);
const int M = 1e3 + 5;

int a[M];

int main()
{

    int n;
    while( cin >> n ){
        for(int i = 0; i < n; ++i)
            cin >> a[i];
        sort(a, a + n);
        int mn = 1e9;
        int ans;
        for(int i = 0; i <= n / 2; ++i){
            ans = 0;
            for(int j = 0; j < i; ++j){
                ans += 24 - a[n - j - 1] + a[j];
            }
            for(int j = i; j < n - i; j += 2){
                ans += a[j + 1] - a[j];
            }
            mn = min(mn, ans);
        }
        cout << mn << endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值