-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1222_2.cpp
46 lines (34 loc) · 883 Bytes
/
1222_2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include<bits/stdc++.h>
using namespace std;
int main() {
int N, L, C;
while (cin >> N >> L >> C) {
string linha, word;
cin.ignore(1);
getline(cin, linha);
stringstream ss(linha);
int colunas = 0,
linhas = 0,
paginas = 0;
while (ss >> word) {
if (colunas + word.length() == C) {
colunas = 0;
linhas++;
}
else if (colunas + word.length() > C) {
colunas = word.length() + 1;
linhas++;
}
else {
colunas += word.length() + 1;
}
if (linhas == L) {
paginas++;
linhas = 0;
}
}
if (linhas > 0 || colunas > 0) paginas++;
cout << paginas << '\n';
}
return 0;
}