zoukankan      html  css  js  c++  java
  • URAL 1881 Long problem statement

    1881. Long problem statement

    Time limit: 0.5 second
    Memory limit: 64 MB
    While Fedya was writing the statement of the problem GOV Chronicles, he realized that there might be not enough paper to print the statements. He also discovered that his text editor didn't have the feature of calculating the number of pages in a text. Then Fedya decided to write a program that would calculate the number of pages for any given text.
    Fedya knew that there were h lines on each page and w symbols in each line. Any two neighboring words in a line were separated by exactly one space. If there was no place for a word in a line, Fedya didn't hyphen it but put the whole word at the beginning of the next line.

    Input

    The first line contains the integers h, w, and n, which are the number of lines on a page, the number of symbols in a line, and the number of words in the problem statement, respectively (1 ≤ h, w ≤ 100; 1 ≤ n ≤ 10 000). The statement written by Fedya is given in the following n lines, one word per line. The words are nonempty and consist of uppercase and lowercase English letters and punctuation marks (period, comma, exclamation mark, and question mark); the length of each word is at most w. The total length of all the words is at most 10 000.

    Output

    Output the number of pages in the problem statement.

    Sample

    inputoutput
    3 5 6
    To
    be
    or
    not
    to
    be
    
    2
    
     1 #include<iostream>  
     2 #include<string.h>  
     3 #include<stdio.h>  
     4 #include<ctype.h>  
     5 #include<algorithm>  
     6 #include<stack>  
     7 #include<queue>  
     8 #include<set>  
     9 #include<math.h>  
    10 #include<vector>  
    11 #include<map>  
    12 #include<deque>  
    13 #include<list>  
    14 using namespace std; 
    15 int main()
    16 {
    17     char s[10010];
    18     int a,b,c,d,x=1,e,f=0;
    19     scanf("%d%d%d%",&a,&b,&c);
    20     gets(s);
    21     f=strlen(s);
    22     e=1;
    23     c--;
    24     while(c--)
    25     {
    26         gets(s);
    27         d=strlen(s);
    28         if(f+d+1>b)
    29         {
    30             e++;
    31             f=d;
    32         }
    33         else
    34             f+=(d+1);
    35         if(e>a)
    36         {
    37             e=1;
    38             x++;
    39         }
    40     }
    41     printf("%d
    ",x);
    42     return 0;
    43 }
    View Code
  • 相关阅读:
    js:数据结构笔记13--检索算法
    ember.js:使用笔记9 开始单元测试
    js:数据结构笔记12--排序算法(2)
    js:数据结构笔记11--排序算法(1)
    js:数据结构笔记10--图和图算法
    js:数据结构笔记9--二叉树
    js:数据结构笔记8--集合
    js:数据结构笔记7--哈希表
    js:数据结构笔记6--字典
    js:数据结构笔记5--链表
  • 原文地址:https://www.cnblogs.com/qscqesze/p/3854184.html
Copyright © 2011-2022 走看看