Hi, I am trying to do 723B - Text Document Analysis and here is my code.
Code
When I input 37, which is the example input, the program just returns maxx and cnt. I don't understand this. Am I doing something wrong. BTW I am using GVim.
№ | Пользователь | Рейтинг |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
My Program Stops Running Unexpectedly
Hi, I am trying to do 723B - Text Document Analysis and here is my code.
int main() { ios::sync_with_stdio(0); cin.tie(0);
int n;
cin >> n;
string s;
getline(cin, s);
for(int i = 0; i < n; i++) {
if(s[i] == '_') {
s[i] = ' ';
}
}
stringstream ss(s);
bool ans = false;
string s1;
int maxx = -1;
int cnt = 0;
while(ss >> s1) {
if(s1[0] == '(') {
ans = true;
cnt++;
} else if(s1[0] == ')') {
ans = false;
cnt++;
} else {
if(ans) {
cnt++;
} else {
int i = s1.size();
maxx = max(maxx, i);
}
}
}
cout << maxx << " " << cnt;
}
When I input 37, which is the example input, the program just returns maxx and cnt. I don't understand this. Am I doing something wrong. BTW I am using GVim.
Название |
---|