zoukankan      html  css  js  c++  java
  • Educational Codeforces Round 20 D. Magazine Ad

    The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this:

    There are space-separated non-empty words of lowercase and uppercase Latin letters.

    There are hyphen characters '-' in some words, their positions set word wrapping points. Word can include more than one hyphen.

    It is guaranteed that there are no adjacent spaces and no adjacent hyphens. No hyphen is adjacent to space. There are no spaces and no hyphens before the first word and after the last word.

    When the word is wrapped, the part of the word before hyphen and the hyphen itself stay on current line and the next part of the word is put on the next line. You can also put line break between two words, in that case the space stays on current line. Check notes for better understanding.

    The ad can occupy no more that k lines and should have minimal width. The width of the ad is the maximal length of string (letters, spaces and hyphens are counted) in it.

    You should write a program that will find minimal width of the ad.

    Input

    The first line contains number k (1 ≤ k ≤ 105).

    The second line contains the text of the ad — non-empty space-separated words of lowercase and uppercase Latin letters and hyphens. Total length of the ad don't exceed 106 characters.

    Output

    Output minimal width of the ad.

    Examples
    input
    4
    garage for sa-le
    output
    7
    input
    4
    Edu-ca-tion-al Ro-unds are so fun
    output
    10
    Note

    Here all spaces are replaced with dots.

    In the first example one of possible results after all word wraps looks like this:


    garage.
    for.
    sa-
    le

    The second example:


    Edu-ca-
    tion-al.
    Ro-unds.
    are.so.fun

     官方题解说的意思其实不就是二分么' '和'_'是一样的

    Firstly notice that there is no difference between space and hyphen, you can replace them with the same character, if you want.

    Let's run binary search on answer. Fix width and greedily construct ad — wrap word only if you don't option to continue on the same line. Then check if number of lines doesn't exceed k.

    #include <iostream>
    using namespace std;
    const int INF = (int)1e9;
    int n,k,r,l;
    string s;
    int solve(int w)
    {
        int ans = 0;
        int l = 0;
        while(l < n)
        {
            ans++;
            int r = l + w;
            if (r >= n) break;
            while(r > l && s[r - 1] != ' ' && s[r - 1] != '-') r--;
            if (r == l) return INF;
            l = r;
        }
        return ans;
    }
    
    int main()
    {
        cin >> k;
        getline(cin, s);
        getline(cin, s);
        n = s.length();
        int l = 0, r = n;
        while(r - l > 1)
        {
            int m = (l + r) / 2;
            if (solve(m) <= k)
                r = m;
            else
                l = m;
        }
        cout << r << endl;
        return 0;
    }
    View Code
  • 相关阅读:
    手机号码正则,座机正则,400正则
    Win10 开始运行不保存历史记录原因和解决方法
    Ubuntu 普通用户无法启动Google chrome
    在win10 64位系统安装 lxml (Python 3.5)
    SecureCRT窗口输出代码关键字高亮设置
    【转】win2008 中iis7设置404页面但返回状态200的问题解决办法
    ionic app开发遇到的问题
    Ubuntu 创建文件夹快捷方式
    Ubuntu配置PATH环境变量
    Ubuntu 升级python到3.7
  • 原文地址:https://www.cnblogs.com/BobHuang/p/6801167.html
Copyright © 2011-2022 走看看