Codeforces 245B
Vasya is an active Internet user. One day he came across an Internet resource he liked, so he wrote its address in the notebook. We know that the address of the written resource has format:
where:
- <protocol> can equal either "http" (without the quotes) or "ftp" (without the quotes),
- <domain> is a non-empty string, consisting of lowercase English letters,
- the /<context> part may not be present. If it is present, then <context> is a non-empty string, consisting of lowercase English letters.
If string <context> isn't present in the address, then the additional character "/" isn't written. Thus, the address has either two characters "/" (the ones that go before the domain), or three (an extra one in front of the context).
When the boy came home, he found out that the address he wrote in his notebook had no punctuation marks. Vasya must have been in a lot of hurry and didn't write characters ":", "/", ".".
Help Vasya to restore the possible address of the recorded Internet resource.
The first line contains a non-empty string that Vasya wrote out in his notebook. This line consists of lowercase English letters only.
It is guaranteed that the given string contains at most 50 letters. It is guaranteed that the given string can be obtained from some correct Internet resource address, described above.
Print a single line — the address of the Internet resource that Vasya liked. If there are several addresses that meet the problem limitations, you are allowed to print any of them.
httpsunrux
http://sun.ru/x
ftphttprururu
ftp://http.ru/ruru
In the second sample there are two more possible answers: "ftp://httpruru.ru" and "ftp://httpru.ru/ru".
I used one night to solve the problem,just because I cann't use the function "find_first_of/find" correctly!
And I didn't have the problem considering overall;
Like the test case:"httprururu";
But I was accepted at last,very happy!

1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main() 5 { 6 string str; 7 string str2("ru"); 8 while(cin>>str) 9 { 10 int len=str.size(); 11 int b; 12 int k=str.find(str2); 13 if(k==4&&str.at(0)=='h'||k==3&&str.at(0)=='f') 14 { 15 b=str.find(str2,k+2); 16 } 17 else 18 { 19 b=k; 20 } 21 if(b+2<len) 22 { 23 str.insert(b+2,"/"); 24 } 25 str.insert(b,"."); 26 if(str.at(0)=='f') 27 { 28 str.insert(3,"://"); 29 cout<<str<<endl; 30 } 31 else if(str.at(0)=='h') 32 { 33 str.insert(4,"://"); 34 cout<<str<<endl; 35 } 36 37 } 38 return 0; 39 } 40
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?