hdu4310贪心

明明贪心是正确的嘛,不知道为什么官方的解题报告说是状态压缩DP。

/*
 * hdu2001/win.cpp
 * Created on: 2012-7-28
 * Author    : ben
 */
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <stack>
#include <string>
#include <vector>
#include <deque>
#include <list>
#include <functional>
#include <numeric>
#include <cctype>
using namespace std;
const int MAXN = 22;
typedef struct {
    int dps;
    int hp;
}Hero;
Hero hero[MAXN];
inline bool operator<(const Hero &h1, const Hero &h2) {
    double r1 = (h1.dps + 0.0) / h1.hp;
    double r2 = (h2.dps + 0.0) / h2.hp;
    return r1 > r2;
}

int main() {
#ifndef ONLINE_JUDGE
    freopen("data.in", "r", stdin);
#endif
    int N;
    while(scanf("%d", &N) == 1) {
        for(int i = 0; i < N; i++) {
            scanf("%d%d", &hero[i].dps, &hero[i].hp);
        }
        sort(hero, hero + N);
        int ans = 0;
        for(int i = 0; i < N; i++) {
            for(int j = i; j < N; j++) {
                ans += hero[i].hp * hero[j].dps;
            }
        }
        printf("%d\n", ans);
    }
    return 0;
}

转载于:https://www.cnblogs.com/moonbay/archive/2012/07/28/2612691.html

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值