IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> F - Financial Planning -> 正文阅读

[数据结构与算法]F - Financial Planning

F - Financial Planning

?Kattis - financialplanning?

Being a responsible young adult, you have decided to start planning for retirement. Doing some back-of-the-envelope calculations, you figured out you need at least?MM?euros to retire comfortably.

You are currently broke, but fortunately a generous gazillionaire friend has offered to lend you an arbitrary amount of money (as much as you need), without interest, to invest in the stock market. After making some profit you will then return the original sum to your friend, leaving you with the remainder.

Available to you are?nn?investment opportunities, the?ii-th of which costs?c_ ici??euros. You also used your computer science skills to predict that the?ii-th investment will earn you?p_ ipi??euros per day. What is the minimum number of days you need before you can pay back your friend and retire? You can only invest once in each investment opportunity, but you can invest in as many different investment opportunities as you like.

For example, consider the first sample. If you buy only the second investment (which costs?1515?euros) you will earn?p_2 = 10p2?=10?euros per day. After two days you will have earned?2020?euros, exactly enough to pay off your friend (from whom you borrowed?1515?euros) and retire with the remaining profit (55?euros). There is no way to make a net amount of?55?euros in a single day, so two days is the fastest possible.

Input

  • The first line contains the number of investment options?1 \leq n \leq 10^51≤n≤105?and the minimum amount of money you need to retire?1 \leq M \leq 10^91≤M≤109.

  • Then,?nn?lines follow. Each line?ii?has two integers: the daily profit of this investment?{1 \leq p_ i \leq 10^9}1≤pi?≤109?and its initial cost?1 \leq c_ i \leq 10^91≤ci?≤109.

Output

Print the minimum number of days needed to recoup your investments and retire with at least?MM?euros, if you follow an optimal investment strategy.

Sample 1

InputcopyOutputcopy
2 5
4 10
10 15
2

Sample 2

InputcopyOutputcopy
4 10
1 8
3 12
4 17
10 100
6

Sample 3

InputcopyOutputcopy
3 5
4 1
9 10
6 3
1

?这个题比赛的时候队友和我都理解错题意了,浪费了不少时间,然后补题的时候想了想,每个股票都有一个最短的回血时间,我们需要的就是回血时间最短的股票,排序后枚举去取最小值;

ac代码:

#include <bits/stdc++.h>
using namespace std;
//#define long long ll;
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0)
//typedef long long;
const long long int N=1e5+7;
long long int n,m;
struct node{
    long long int earn,pay;//结构体,利润和投资;
}a[N];
int cmp(node a,node b){//比较的是最短开始回本的时间;
    return a.pay*b.earn<b.pay*a.earn;//a.y/a.x<b.y/b.x的变式,防止除数不准确;
}
int main(){
    IOS;
    cin>>n>>m;
    long long int earn=0,pay=0;
    for(int i=0;i<n;i++){
        cin>>a[i].earn>>a[i].pay;
    }
    sort(a,a+n,cmp);//
    long long int ans=1e18;
    for(int i=0;i<n;i++){//枚举
        earn+=a[i].earn;
        pay+=a[i].pay;
        if((pay+m)%earn==0){
            ans=min(ans,(m+pay)/earn);
        }
        else ans=min(ans,(m+pay)/earn+1);
    }
    cout<<ans<<endl;
    return 0;
}

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-07 22:56:50  更:2022-04-07 22:59:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 9:27:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码