zoukankan      html  css  js  c++  java
  • HDU 6107 Typesetting 倍增

    Typesetting

    Problem Description
    Yellowstar is writing an article that contains N words and 1 picture, and the i-th word contains ai characters.
    The page width is fixed to W characters. In order to make the article look more beautiful, Yellowstar has made some rules:

    1. The fixed width of the picture is pw. The distance from the left side of the page to the left side of the photo fixed to dw, in other words, the left margin is dw, and the right margin is W - pw - dw.
    2. The photo and words can't overlap, but can exist in same line.
    3. The relative order of words cannot be changed.
    4. Individual words need to be placed in a line.
    5. If two words are placed in a continuous position on the same line, then there is a space between them.
    6. Minimize the number of rows occupied by the article according to the location and height of the image.

    However, Yellowstar has not yet determined the location of the picture and the height of the picture, he would like to try Q different locations and different heights to get the best look. Yellowstar tries too many times, he wants to quickly know the number of rows each time, so he asked for your help. It should be noted that when a row contains characters or pictures, the line was considered to be occupied.
     
    Input
    The first line of the input gives the number of test cases T; T test cases follow.
    Each case begins with one line with four integers N, W, pw, dw : the number of words, page width, picture width and left margin.
    The next line contains N integers ai, indicates i-th word consists of ai characters.
    The third line contains one integer Q. 
    Then Q lines follow, each line contains the values of xi and hi, indicates the starting line and the image height of the image.

    Limits
    T10
    1N,W,Q105
    1pw,aiW
    0dwWpw
     
    Output
    For each query, output one integer denotes the minimum number of rows.
     
    Sample Input
    2 2 7 4 3 1 3 3 1 2 2 2 5 2 3 8 2 3 1 1 3 1 1 1
     
    Sample Output
    2 3 3 1
     
     
    题意:
      给你n个单词,放到宽度是W的文档里,每个单词不能跨行,在一行的连续的单词必须有空格隔开
      现在,在第 xi 行 距离文档左边框 dw的位置 放一个 宽度pw ,长度hi 的 图片,现在把单词全部填上去,问最少占多少行(只要有单词或者图片都算被占)
    题解:
      设定f[i][j],表示以 第 i 个单词 开始 给你 2^j行 能放到第几个单词
      pw, dw,w是给定的,所以我们对于所有询问,无非就是  三种 宽度, 我们用倍增预处理三种宽度的 f 数组就行了
      我写的挫,复杂度:O(Q*logn*logn + n*logn)
    下面给出AC代码
    #include<bits/stdc++.h>
    using namespace std;
    #pragma comment(linker, "/STACK:102400000,102400000")
    #define ls i<<1
    #define rs ls | 1
    #define mid ((ll+rr)>>1)
    #define pii pair<int,int>
    #define MP make_pair
    typedef long long LL;
    typedef unsigned long long ULL;
    const long long INF = 1e18+1LL;
    const double pi = acos(-1.0);
    const int N = 2e5+10, M = 1e3+20,inf = 2e9;
    
    int f[N][25],n,w,pw,dw,a[N],g[N][25];
    LL sum[N];
    int main() {
        int T;
        scanf("%d",&T);
        while(T--) {
            scanf("%d%d%d%d",&n,&w,&pw,&dw);
            for(int i = 1; i <= n; ++i) scanf("%d",&a[i]);
            memset(g,0,sizeof(g));
            memset(f,0,sizeof(f));
            sum[0] = 0;
            for(int i = 1; i <= n; ++i) sum[i] = sum[i-1] + 1LL*a[i] + 1LL;
            for(int i = 1; i <= n; ++i)
            {
                int l = i,r = n;
                while(l <= r) {
                    int md = (l + r) >> 1;
                    if(sum[md] - sum[i-1] - 1<= 1LL*w) f[i][0] = md,l = md+1;
                    else r = md-1;
                }
    
                l = i,r = n;
                int now = -1;
                while(l <= r) {
                    int md = (l + r) >> 1;
                    if(sum[md] - sum[i-1] - 1 <= 1LL*dw) now = md,l = md+1;
                    else r = md-1;
                }
    
                if(now == -1) g[i][0] = i-1;
                else g[i][0] = now;
    
                l = g[i][0] + 1,r = n,now = -1;
                while(l <= r) {
                    int md = (l + r) >> 1;
                    if(sum[md] - sum[g[i][0]] - 1 <= 1LL*(w - pw - dw)) now = md,l = md+1;
                    else r = md-1;
                }
                if(now != -1) g[i][0] = now;
            }
            for(int j = 1; j <= 18; ++j)
                  for(int i = 1; i <= n; ++i){
                    if(f[i][j-1] == n) f[i][j] = n;
                    else f[i][j] = f[f[i][j-1] + 1][j-1];
                }
              for(int j = 1; j <= 18; ++j)
                  for(int i = 1; i <= n; ++i){
                    if(g[i][j-1] == n) g[i][j] = n;
                    else
                    g[i][j] = g[g[i][j-1] + 1][j-1];
                }
    
            int Q;
            scanf("%d",&Q);
            while(Q--) {
                int x,h;
                scanf("%d%d",&x,&h);
    
                x -= 1;
    
                int now = 0,l,r,ans;
                for(int i = 18; i >= 0; --i)
                    if(((x>>i)&1) && now != n)now = f[now+1][i];
                if(now == n) {
                    l = 1; r = x,ans = 1;
                    while(l <= r) {
                        int md = (l+r)>>1;
                        now = 0;
                        for(int i = 18; i >= 0; --i)
                            if(((md>>i)&1) && now != n)now = f[now+1][i];
                        if(now == n) ans = md,r = md-1;
                        else l = md+1;
                    }
                    printf("%d
    ",ans + h);
                    continue;
                }
    
                int tmp = now;
                for(int i = 20; i >= 0; --i)
                    if(((h>>i)&1) && now != n) now = g[now+1][i];
                if(now == n) {
                    printf("%d
    ",h + x);
                    continue;
                }
                tmp = now;
                l = 0; r = 100005,ans = 100005;
                while(l <= r) {
                    int md = (l+r)>>1;
                    now = tmp;
                    for(int i = 18; i >= 0; --i)
                        if(((md>>i)&1) && now != n)now = f[now+1][i];
                    if(now == n) ans = md,r = md-1;
                    else l = md+1;
                }
                printf("%d
    ",x + ans + h);
            }
        }
        return 0;
    }
  • 相关阅读:
    使用ObjectAnimator设置动画
    偷懒了一天,去给人装系统去了~ 今天继续更 自己敲代码实现下拉刷新上滑加载更多
    listview的头布局把我的ACTION_DOWN事件给吃了.....
    测量还没有绘制好的布局的高度,手动测量
    Ace 动画应用实例 ------启动欢迎界面
    Android 动画之TranslateAnimation应用详解
    Android 动画之AlphaAnimation应用详解
    Android 动画之ScaleAnimation应用详解
    Android RotateAnimation详解
    Android动画效果translate、scale、alpha、rotate详解
  • 原文地址:https://www.cnblogs.com/zxhl/p/7349703.html
Copyright © 2011-2022 走看看