码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 1648 Business Center

时间:2017-08-24 19:44:47      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:class   color   blog   ++   can   str   target   iostream   https   

https://vjudge.net/problem/UVA-1648

 

设上升x层,列个方程解出来,再把x带回去

 

#include<cmath>
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int u[2001],d[2001];
int main()
{
    int n,m,ans,x;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        ans=2e9;
        for(int i=1;i<=m;i++) scanf("%d%d",&u[i],&d[i]);
        for(int i=1;i<=m;i++) 
        {
            x=d[i]*n/(u[i]+d[i])+1;
            ans=min(ans,u[i]*x-d[i]*(n-x));
        }
        printf("%d\n",ans);
    }
}

 

UVA 1648 Business Center

标签:class   color   blog   ++   can   str   target   iostream   https   

原文地址:http://www.cnblogs.com/TheRoadToTheGold/p/7424429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!