CF245B Internet Address

来源:互联网 发布:java emf转jpg 编辑:程序博客网 时间:2024/06/05 06:48
B - Internet Address
Time Limit:2000MS    Memory Limit:262144KB    64bit IO Format:%I64d & %I64u

Description

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:

<protocol>://<domain>.ru[/<context>]

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.

Input

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.

Output

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.

Sample Input

Input
httpsunrux
Output
http://sun.ru/x
Input
ftphttprururu
Output
ftp://http.ru/ruru

Hint

In the second sample there are two more possible answers: "ftp://httpruru.ru" and "ftp://httpru.ru/ru".


#include <iostream>#include <string.h>#include <string>#include <algorithm>#include <cmath>#include <stack>#include <cstdio>#include <queue>#include <cstdlib>#define INF 99999999using namespace std;void input(){    string str, strcopy = "";    int sum = 0;    cin >> str;    int len = str.length(), q = 0, p = 0;    for (int i = p; i < len; i++)    {        if (str[0] == 'h')        {            strcopy += "http://";            p = 4;        }        else        {            strcopy += "ftp://";            p = 3;        }        break;    }    if (str[len - 1] == 'u' && str[len - 2] == 'r')    {        for (int i = p; i < str.length() - 2; i++)        {            strcopy += str[i];        }        strcopy += ".ru";    }    else    {        for (int i = len - 1; i >= 0; i--)        {            if (str[i] == 'u' && str[i - 1] == 'r')            {                q = i + 1;                break;            }        }        for (int i = p; i < q - 2; i++)        {            strcopy += str[i];        }        strcopy += ".ru/";        for (int i = q; i < len; i++)        {            strcopy += str[i];        }    }    cout << strcopy << endl;}int main(){    input();    return 0;}



原创粉丝点击