zoukankan      html  css  js  c++  java
  • D

    After moving from his parents’ place Zhenya has been living in the University dormitory for a month. However, he got pretty tired of the curfew time and queues to the shower room so he took a fancy for renting an apartment. It turned out not the easiest thing in the world to make a choice. One can live in a one bedroom apartment or in a two bedroom apartment, alone or share it with a friend. Zhenya can afford to rent an apartment of any type alone, but he can share only a two bedroom apartment. If two people share an apartment, each pays half of the rent. Every apartment has its own advantages like part of the town, floor, view from the windows, etc., which Zhenya is going to take into account to make a decision.
    Besides that, his friends, he’s ready to share an apartment with, also have certain advantages. For example, Igor is a good cook, Dima is tidy, Kostya is a good cook and at the same time can explain how to solve functional analysis problems. And do not forget that living alone has its own bright sides.
    Zhenya has already prepared the list of suitable apartments and possible housemates. Zhenya has estimated in units the advantages of each apartment and each friend and also the advantages of living alone. Besides, he knows the maximum sum of money he and each of his friends is ready to pay for the apartment. Help Zhenya to make a decision.

    Input

    The first line contains three integers: the maximum sum Zhenya is ready to pay monthly, the advantages of living alone in a one bedroom apartment and the advantages of living alone in a two bedroom apartment.
    The second line contains an integer n that is the number of Zhenya’s friends (0 ≤ n ≤ 256). Next n lines describe the friends, two integers in every line: the maximum sum the corresponding friend is ready to pay monthly and the advantages of sharing an apartment with him.
    The next line contains an integer m that is the number of suitable apartments (1 ≤ m ≤ 256). Next m lines describe the apartments, three integers in every line: the number of bedrooms in an apartment (1 or 2), monthly rent and the advantages of living there.
    All the advantages are estimated in the same units and lie in the range from 0 to 100 000. All sums of money are in rubles and lie in the range from 1 to 100 000.

    Output

    Output the variant with maximum sum of advantages, Zhenya (and his friend in case of sharing apartments) can afford. If Zhenya should rent an apartment number i alone, output “You should rent the apartment #i alone.”. If he should share an apartment number i with a friend j output “You should rent the apartment #i with the friend #j.”. Friends and apartments are numbered from 1 in order they are given in the input. If there are several optimal alternatives, output any of them. If Zhenya can’t afford to rent any apartment at all, output “Forget about apartments. Live in the dormitory.”.

    Example

    inputoutput
    10000 50 70
    1
    10000 100
    2
    1 10000 200
    2 30000 500
    
    You should rent the apartment #1 alone.
    
    30000 0 1
    1
    10000 1001
    3
    1 20000 2000
    2 30000 2000
    2 10000 1001
    
    You should rent the apartment #3 with the friend #1.
    
    1000 0 0
    0
    1
    1 10000 1000
    
    Forget about apartments. Live in the dormitory.
    

    Notes

    In the first example Zhenya can’t afford even to share the second apartment. That is why he has to rent the first one. The sum of advantages in this case will be 250 (50 + 200).
    In the second example Zhenya can afford any apartment but he can share only the third one. If he chooses this variant, the sum of advantages will be 2002 (1001 + 1001), and if he chooses to live alone it will not be more than 2001 (1 + 2000 in case of living alone in the second apartment).
    In the third example Zhenya can’t afford the only possible variant.

    Hint

    /*
    * @Author: lyuc
    * @Date:   2017-04-30 15:11:54
    * @Last Modified by:   lyuc
    * @Last Modified time: 2017-04-30 15:32:17
    */
    /**
     * 题意:Zhenya想租房子,可以和朋友合租,也可以自己租,自己租的时候要付全部的租金,和朋友合租的时候要严格的
     *         一人一半
     *
     * 思路:暴力,读错题了,应该是自己住的单间的时候快乐值是:快乐值1+酒店快乐值,自己住双人间的时候快乐值是:
     *         快乐值2+酒店快乐值,和朋友合租的时候快乐值是:朋友的快乐值+酒店快乐值
     */
    #include <iostream>
    #include <stdio.h>
    using namespace std;
    struct Fr{
        int pay,hap;
    }fr[300];
    struct Ho{
        int id,pay,hap;
    }ho[300];
    int pay,hap1,hap2;
    int n,m;
    int main(){
        // freopen("in.txt","r",stdin);
        scanf("%d%d%d",&pay,&hap1,&hap2);
        scanf("%d",&n);
        for(int i=0;i<n;i++){
            scanf("%d%d",&fr[i].pay,&fr[i].hap);
        }
        scanf("%d",&m);
        for(int i=0;i<m;i++){
            scanf("%d%d%d",&ho[i].id,&ho[i].pay,&ho[i].hap);
        }
        int maxhap=-1;
        int maxho=-1;
        int maxfr=-1;
        for(int i=0;i<m;i++){
            if(ho[i].id==1){
                if(pay>=ho[i].pay){
                    if(hap1+ho[i].hap>maxhap){
                        maxhap=hap1+ho[i].hap;
                        maxho=i;
                        maxfr=-1;
                    }
                }
            }else if(ho[i].id==2){
                if(pay>=ho[i].pay){
                    if(hap2+ho[i].hap>maxhap){
                        maxhap=hap2+ho[i].hap;
                        maxho=i;
                        maxfr=-1;
                    }
                }
                for(int j=0;j<n;j++){
                    if(min(pay,fr[j].pay)*2>=ho[i].pay){
                        if(fr[j].hap+ho[i].hap>maxhap){
                            maxhap=fr[j].hap+ho[i].hap;
                            maxho=i;
                            maxfr=j;
                        }
                    }
                }
            }
        }
        if(maxho==-1){
            puts("Forget about apartments. Live in the dormitory.");
        }else{
            if(maxfr==-1){
                printf("You should rent the apartment #%d alone.
    ",maxho+1);
            }else{
                printf("You should rent the apartment #%d with the friend #%d.
    ",maxho+1,maxfr+1);
            }
        }
        return 0;
    }
  • 相关阅读:
    自制 移动端 纯原生 Slider滑动插件
    CSS3动画几个平时没注意的属性
    移动开发屏幕适配分析
    CSS3伸缩盒Flexible Box
    grep命令做永久别名 显示颜色
    centos 正则,grep,egrep,流式编辑器 sed,awk -F 多个分隔符 通配符 特殊符号. * + ? 总结 问加星 cat -n nl 输出文件内容并加上行号 alias放~/.bash_profile 2015-4-10 第十三节课
    centos shell基础 alias 变量单引号 双引号 history 错误重定向 2>&1 jobs 环境变量 .bash_history source配置文件 nohup & 后台运行 cut,sort,wc ,uniq ,tee ,tr ,split, paste cat> 2.txt <<EOF 通配符 glob模式 发邮件命令mail 2015-4-8 第十二节课
    wget 命令大全
    centos 阶段复习 2015-4-6 dd命令 hosts.allow和hosts.deny 啊铭的myssh脚本 清空history命令历史 /dev/zero 零发生器 /dev/null 黑洞 /dev/random 生成随机数 第十一节课
    Linux下LDAP统一认证解决方案
  • 原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/6789553.html
Copyright © 2011-2022 走看看