zoukankan      html  css  js  c++  java
  • Codeforces 450 C. Jzzhu and Chocolate

    二次函数 n*m/ ( (x+1)*(k-x+1) ) 是对称轴>0开口向下的二次函数,直接考虑 x==0||x==n-1||x==m-1等进行推断就可以.....


    C. Jzzhu and Chocolate
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Jzzhu has a big rectangular chocolate bar that consists of n × m unit squares. He wants to cut this bar exactly k times. Each cut must meet the following requirements:

    • each cut should be straight (horizontal or vertical);
    • each cut should go along edges of unit squares (it is prohibited to divide any unit chocolate square with cut);
    • each cut should go inside the whole chocolate bar, and all cuts must be distinct.

    The picture below shows a possible way to cut a 5 × 6 chocolate for 5 times.

    Imagine Jzzhu have made k cuts and the big chocolate is splitted into several pieces. Consider the smallest (by area) piece of the chocolate, Jzzhu wants this piece to be as large as possible. What is the maximum possible area of smallest piece he can get with exactly k cuts? The area of a chocolate piece is the number of unit squares in it.

    Input

    A single line contains three integers n, m, k (1 ≤ n, m ≤ 109; 1 ≤ k ≤ 2·109).

    Output

    Output a single integer representing the answer. If it is impossible to cut the big chocolate k times, print -1.

    Sample test(s)
    input
    3 4 1
    
    output
    6
    
    input
    6 4 2
    
    output
    8
    
    input
    2 3 4
    
    output
    -1
    
    Note

    In the first sample, Jzzhu can cut the chocolate following the picture below:

    In the second sample the optimal division looks like this:

    In the third sample, it's impossible to cut a 2 × 3 chocolate 4 times.




    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    typedef long long int LL;
    
    LL n,m,k,ans=0LL;
    
    int main()
    {
        cin>>n>>m>>k;
        if(n+m-2<k)
        {
            puts("-1"); return 0;
        }
        if(n+m-2==k)
        {
            puts("1"); return 0;
        }
    
        LL t;
        if(m>=k+1)
            ans=max(ans,n*(m/(k+1)));
        else
        {
            t=k-m+1;
            ans=max(ans,n/(t+1));
        }
        if(n>=k+1)
            ans=max(ans,m*(n/(k+1)));
        else
        {
            t=k-n+1;
            ans=max(ans,m/(t+1));
        }
        cout<<ans<<endl;
        return 0;
    }


  • 相关阅读:
    Oracle一次可以查询多个表的结果的方法
    nagios+logstash实时监控java日志(一)
    原 ELK+Filebeat集中式日志解决方案(centos7)
    关于系统运维监控规范的几点建议和思考
    web文件管理系统和日志实时监控工具
    [运维]ELK实现日志监控告警
    阿里云服务器 发送邮箱 STMP 25端口 465端口问题 Javamail 25被禁用
    Elasticsearch5.6搭建及拼音中文混合搜索实现
    ELK pipeline
    图解Elasticsearch中的_source、_all、store和index属性
  • 原文地址:https://www.cnblogs.com/gcczhongduan/p/4489651.html
Copyright © 2011-2022 走看看