搜狐笔试第一题本地没问题,OJ一直不行是什么情况


#include <iostream>

#include <string>

#include <vector>

using namespace std;


int main(int argc, const char * argv[]) {

string path;

vector<string> v;

string tmp;

vector<string> res;

while(cin>>path){

res.clear();

tmp.clear();

v.clear();

//判空

if(path.size()==0){

cout<<endl;

break;

}

//路径

for(int i=0;i!=path.size();i++){

if(path[i]=='/'){

if(tmp.size()!=0){

v.push_back(tmp);

tmp.clear();

}

}

else

tmp+=path[i];

}

if((path[path.size()-1])!='/')

v.push_back(tmp);

//简化

for(int i=0;i!=v.size();i++){

if(v[i]!="."&&v[i]!="..")

res.push_back(v[i]);

else if(v[i]=="."){

;

}else{

res.pop_back();

}

}

cout<<"/";

for(int i=0;i!=res.size()-1;++i)

cout<<res[i]<<"/";

cout<<res[res.size()-1]<<endl;

}

return 0;

}


#搜狐#
全部评论
我也是啊,本地都没问题,一组都过不了。我基本上就是按原题做法写的啊。。。
点赞 回复 分享
发布于 2017-09-17 20:39
我也是,一直提示格式错误,明明看的没问题啊。
点赞 回复 分享
发布于 2017-09-17 20:42
来试试 /./../..
点赞 回复 分享
发布于 2017-09-17 20:43
这个估计只有20的通过率
点赞 回复 分享
发布于 2017-09-17 21:07

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务