• Codeforces Round #257 (Div. 2) C. Jzzhu and Chocolate


    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.

    题意:n*m的格子切k刀,求得到的最小格子数的最大值。

    思路:贪心,先考虑都一个方向切,不够了再在还有一个方向切,尽量平均分。

    AC代码:


    #include <cstdio>
    #include <iostream>
    #include <algorithm>
    #include <cmath>
    #include <cstring>
    #include <stdlib.h>
    using namespace std;
    typedef long long ll;
    ll solve(int n,int m,int k){
        if(k<n) return 1LL*n/(k+1)*m;
        k-=n-1;
        return 1LL*m/(k+1);
    }
    int main(){
        int n,m,k;
        scanf("%d%d%d",&n,&m,&k);
        ll ans=max(solve(n,m,k),solve(m,n,k));
        if(k>n+m-2){
            cout<<-1;
        }
        else printf("%I64d",ans);
    
        return 0;
    }

    
  • 相关阅读:
    Map与实体之间转换
    letsencrypt 免费SSL证书申请, 自动更新
    spring接收json格式的多个对象参数(变通法)
    controller函数中参数列表使用多个@RequestBody
    经典网页设计:30个新鲜出炉的扁平化网站设计《上篇》
    使用 iosOverlay.js 创建 iOS 风格的提示和通知
    字体大宝库:设计师必备的优秀免费英文字体
    RandomUser – 生成随机用户 JSON 数据的 API
    Salvattore:CSS 驱动的 jQuery Masonry 插件
    赞!jsPDF – 基于 HTML5 的强大 PDF 生成工具
  • 原文地址:https://www.cnblogs.com/jhcelue/p/6816353.html
Copyright © 2020-2023  润新知