HDU-Physical Examination

http://acm.hdu.edu.cn/showproblem.php?pid=4442

在飞机哥的指点下,对这道题目有了一些了解:

1. 可以由简单至复杂,先讨论2个的情况:

a1 b1

a2 b2

如果现有的顺序是最佳顺序,那么一定有关系:

a1 + a1*b2 + a2 >= a2 + a2*b1 + a1

等价于

a1/b1 > a2/b2

这样把和1有关的聚集在了等式的左边,和2有关的聚集在了等式的右边。

2.如果是3个的情况,假设

a1 b1

a2 b2

a3 b3

是最佳的顺序,那么一定有a1/b1 > a2/b2 > a3/b3;

因为两个相邻的不满足的话,总是可以交换他们两个的顺序得到优化。

所以是按照a/b进行排序贪心:

#include<iostream>
#include<cstdlib>
#include<vector>
#include<map>
#include<cstring>
#include<set>
#include<string>
#include<algorithm>
#include<sstream>
#include<ctype.h>
#include<fstream>
#include<string.h>
#include<stdio.h>
#include<math.h>
#include<stack>
#include<queue>
#include<ctime>
//#include<conio.h>
using namespace std;

const int INF_MAX=0x7FFFFFFF;
const int INF_MIN=-(1<<30);

const double eps=1e-10;
const double pi=acos(-1.0);

#define pb push_back   //a.pb( )
#define chmin(a,b) ((a)<(b)?(a):(b))
#define chmax(a,b) ((a)>(b)?(a):(b))


template<class T> inline T gcd(T a,T b)//NOTES:gcd(
  {if(a<0)return gcd(-a,b);if(b<0)return gcd(a,-b);return (b==0)?a:gcd(b,a%b);}
template<class T> inline T lcm(T a,T b)//NOTES:lcm(
  {if(a<0)return lcm(-a,b);if(b<0)return lcm(a,-b);return a*(b/gcd(a,b));}


typedef pair<int, int> PII;
typedef vector<PII> VPII;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef long long LL;
int dir_4[4][2]={{0,1},{-1,0},{0,-1},{1,0}};
int dir_8[8][2]={{0,1},{-1,1},{-1,0},{-1,-1},{0,-1},{1,-1},{1,0},{1,1}};
//下,左下,左,左上,上,右上,右,右下。

//******* WATER ****************************************************************


struct node {
    LL a, b;
    double d;
    bool operator < (const node& k) const{
        return a < k.a; //升序
    }
};

vector<node> vn;

LL calc() {
    LL mod = 365 * 24 * 60 * 60;
    LL ret = 0;
    LL sum = 0;
    for(int i = 0; i < vn.size(); i++) {
        ret = sum * vn[i].b + vn[i].a;
        sum += ret;
        sum %= mod;
    }
    return sum;
}

int main() {
    int n;
    node tmp;
    while(scanf("%d", &n) && n) {
        vn.clear();
        for(int i = 0; i < n; i++) { scanf("%I64d%I64d", &tmp.a, &tmp.b); tmp.d = (double)tmp.a / (tmp.b - 1);  vn.push_back(tmp);}
        //sort(vn.begin(), vn.end());
        printf("%I64d\n", calc());
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值