关注
1 字符串a<<b() int main() {
string str;
cin>>str;
stack<char> s;
for(int i=0;i<str.length();i++){
if(str[i]==')'){
while(s.top()!='(')
s.pop();
s.pop();
} else
s.push(str[i]);
}
string tmp;
int cnt=0;
while(!s.empty()){
char temp=s.top();
if(temp=='<')
cnt++;
else{
if(cnt==0){
tmp+=s.top();
}
cnt--;
cnt=max(0,cnt);
}
s.pop();
}
string t;
for(int i=tmp.length()-1;i>=0;i--){
cout<<tmp[i];
}
cout<<endl;
return 0;
} 2 迷宫题 #include<bits/stdc++.h>
using namespace std;
const int N=105;
int n;
int start_x=0;
int start_y=0;
char mat[N][N];
int flag[N][N];
struct P{
int x;
int y;
int step;
P(int _x,int _y,int _step){x=_x;y=_y;step=_step;}
};
int minLen=INT32_MAX;
void bfs(){
queue<P*> q;
q.push(new P(start_x,start_y,0));
while(!q.empty()){
P *temp=q.front();
q.pop();
int x=temp->x;
int y=temp->y;
int step=temp->step;
//cout<<x<<" "<<y<<endl;
if(x==-1) x=n-1;
if(y==-1) y=n-1;
if(x==n) x=0;
if(y==n) y=0;
if(mat[x][y]=='E'){
if(step<minLen)
minLen=step;
}
if(flag[x][y]||mat[x][y]=='#')
continue;
flag[x][y]=1;
q.push(new P(x,y+1,step+1));
q.push(new P(x,y-1,step+1));
q.push(new P(x+1,y,step+1));
q.push(new P(x-1,y,step+1));
}
}
int main() {
cin>>n;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cin>>mat[i][j];
if(mat[i][j]=='S'){
start_x=i;
start_y=j;
}
}
}
bfs();
if(minLen==INT32_MAX)
cout<<-1<<endl;
else
cout<<minLen<<endl;
return 0;
}
查看原帖
点赞 1
相关推荐
牛客热帖
正在热议
# 25届秋招总结 #
382350次浏览 3803人参与
# ai智能作图 #
12592次浏览 196人参与
# 北方华创开奖 #
64983次浏览 522人参与
# 地方国企笔面经互助 #
6167次浏览 14人参与
# 我的实习求职记录 #
6109452次浏览 83856人参与
# 发工资后,你做的第一件事是什么 #
5188次浏览 21人参与
# 阿里云管培生offer #
52480次浏览 1522人参与
# 硬件兄弟们 甩出你的华为奖状 #
76369次浏览 617人参与
# 如果再来一次,你还会选择这个工作吗? #
104286次浏览 1049人参与
# 哪些公司校招卡第一学历 #
31590次浏览 89人参与
# 如果有时光机,你最想去到哪个年纪? #
27203次浏览 564人参与
# 华为工作体验 #
109596次浏览 853人参与
# 如果你有一天可以担任公司的CEO,你会做哪三件事? #
9151次浏览 186人参与
# 还记得你第一次面试吗? #
30215次浏览 425人参与
# 许愿池 #
216805次浏览 2543人参与
# 腾讯求职进展汇总 #
206102次浏览 1689人参与
# 你觉得第一学历对求职有影响吗? #
15977次浏览 129人参与
# 产运销实习日记 #
27879次浏览 323人参与
# 阿里求职进展汇总 #
71926次浏览 786人参与
# 上班到公司第一件事做什么? #
14634次浏览 165人参与
# 实习,投递多份简历没人回复怎么办 #
2430157次浏览 34653人参与
# 实习中的菜狗时刻 #
280171次浏览 2759人参与