mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:08:47 +00:00
CF20A BerOS file system
R40307229
This commit is contained in:
parent
a308a60ab1
commit
0a16707885
27
problem/CF20A/CF20A.cpp
Normal file
27
problem/CF20A/CF20A.cpp
Normal file
@ -0,0 +1,27 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
string s;
|
||||
cin >> s;
|
||||
if (s.size() == 1) {
|
||||
cout << s << endl;
|
||||
return 0;
|
||||
}
|
||||
while (s.size() && *(s.end() - 1) == '/') {
|
||||
s.erase(s.end() - 1);
|
||||
}
|
||||
if (!s.size()) {
|
||||
cout << "/" << endl;
|
||||
return 0;
|
||||
}
|
||||
for (string::iterator it = s.begin(); it != s.end(); it++) {
|
||||
if (it + 1 != s.end() && *it == '/' && *(it + 1) == '/') {
|
||||
s.erase(it + 1);
|
||||
it--;
|
||||
}
|
||||
}
|
||||
cout << s << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user