多多色-多人伦交性欧美在线观看-多人伦精品一区二区三区视频-多色视频-免费黄色视屏网站-免费黄色在线

國內最全IT社區平臺 聯系我們 | 收藏本站
阿里云優惠2
您當前位置:首頁 > 互聯網 > VK Cup 2012 Qualification Round 1---C. Cd and pwd commands

VK Cup 2012 Qualification Round 1---C. Cd and pwd commands

來源:程序員人生   發布時間:2014-11-18 09:02:39 閱讀次數:3217次

Cd and pwd commands
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya is writing an operating system shell, and it should have commands for working with directories. To begin with, he decided to go with just two commands: cd (change the current directory) and pwd (display the current directory).

Directories in Vasya's operating system form a traditional hierarchical tree structure. There is a single root directory, denoted by the slash character "/". Every other directory has a name ― a non-empty string consisting of lowercase Latin letters. Each directory (except for the root) has a parent directory ― the one that contains the given directory. It is denoted as "..".

The command cd takes a single parameter, which is a path in the file system. The command changes the current directory to the directory specified by the path. The path consists of the names of directories separated by slashes. The name of the directory can be "..", which means a step up to the parent directory. ?..? can be used in any place of the path, maybe several times. If the path begins with a slash, it is considered to be an absolute path, that is, the directory changes to the specified one, starting from the root. If the parameter begins with a directory name (or ".."), it is considered to be a relative path, that is, the directory changes to the specified directory, starting from the current one.

The command pwd should display the absolute path to the current directory. This path must not contain "..".

Initially, the current directory is the root. All directories mentioned explicitly or passed indirectly within any command cd are considered to exist. It is guaranteed that there is no attempt of transition to the parent directory of the root directory.

Input

The first line of the input data contains the single integer n (1?≤?n?≤?50) ― the number of commands.

Then follow n lines, each contains one command. Each of these lines contains either command pwd, or command cd, followed by a space-separated non-empty parameter.

The command parameter cd only contains lower case Latin letters, slashes and dots, two slashes cannot go consecutively, dots occur only as the name of a parent pseudo-directory. The command parameter cd does not end with a slash, except when it is the only symbol that points to the root directory. The command parameter has a length from 1 to 200 characters, inclusive.

Directories in the file system can have the same names.

Output

For each command pwd you should print the full absolute path of the given directory, ending with a slash. It should start with a slash and contain the list of slash-separated directories in the order of being nested from the root to the current folder. It should contain no dots.

Sample test(s)
input
7 pwd cd /home/vasya pwd cd .. pwd cd vasya/../petya pwd
output
/ /home/vasya/ /home/ /home/petya/
input
4 cd /a/b pwd cd ../a/b pwd
output
/a/b/ /a/a/b/





解題思路:用字符串操作摹擬樹。 找絕對路徑。





AC代碼:

#include <iostream> #include <cstdio> #include <string> using namespace std; int main(){ // freopen("in.txt", "r", stdin); int n; string cmd, cur, ans, tt; while(cin>>n){ ans = "/"; for(int i=0; i<n; i++){ cin>>cmd; if(cmd == "cd"){ cin>>cur; cur += '/'; for(int j=0; j<cur.size(); j++){ tt += cur[j]; if(cur[j] == '/'){ if(tt == "/") ans = tt; else if(tt == "../"){ int k; for(k=ans.size()⑴; ans[k⑴]!='/'; k--) ; ans.resize(k); } else ans += tt; tt = ""; } } } else{ cout<<ans<<endl; } } } return 0; }


生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈
程序員人生
------分隔線----------------------------
分享到:
------分隔線----------------------------
關閉
程序員人生
主站蜘蛛池模板: 亚洲欧美另类小说 | 免费日韩一级片 | 免费一区二区三区四区 | 成人免费视频一区二区三区 | www.日| 午夜视频啪啪 | 国产精品久久久久久一区二区三区 | 波多野结衣视频一区二区 | www.在线观看.com | 国产人澡人澡澡澡人碰视频 | 一区二区三区视频免费 | 免费激情视频网站 | 日韩色综合 | 午夜在线播放 | 羞羞动漫网址 | 亚洲欧美日韩网站 | 日韩中文字幕在线观看 | 欧美人成片免费看视频不卡 | 日一区二区 | 成人久久免费视频 | 中文字幕第一区 | www.欧美com| 天天天天鲁天天拍一拍 | 美女私人影院 | 欧美另类老人xxxx | 人成免费在线视频 | 欧美亚洲国产色综合 | 国产欧美亚洲精品 | 欧美一级欧美三级在线观看 | 国产基zz视频日本在线观看 | 日韩 欧美 自拍 | 国语精品91自产拍在线观看二区 | 亚洲欧美精选 | 福利网站在线 | 欧美一区二区三区不卡免费 | 亚洲色图1 | 日本不卡视频在线 | 欧美最猛黑人xxxxx猛交 | 国产亚洲精品自在久久不卡 | 国产大学生露脸激情 | 美女啪啪国产 |