G++ 编译不会结束



我一直在尝试用这段代码解决一些问题。在我的机器中,它用编译而没有错误

g++";文件名.cpp">

但在裁判机上使用此命令

g++-g-O2-std=gnu++17-static";文件名.cpp">

并且它不会结束编译,因此超过了时间限制。我也使用了那个些标志,它也编译不完。

任何能帮忙的人。

#include<iostream>
#include<string>
#include<utility>
#include<vector>
#include<queue>
using namespace std;
pair<int,int> maxi;
void bfs(vector<vector<char>> &Adj_List, pair<int,int> start);
int main(){
vector<pair<int,int>> starts;
cin >> maxi.first >> maxi.second;
vector<vector<char>> graph(maxi.first);
char single;
for(int i = 0; i < maxi.first; i++){ 
for(int j = 0; j < maxi.second; j++){ 
cin >> single;
graph[i].push_back(single);
if(graph[i][j] == 'V') starts.push_back({i, j});
}}
for(auto k:starts) bfs(graph, k);
for(int i = 0; i < maxi.first; i++){ 
for(int j = 0; j < maxi.second; j++) cout << graph[i][j] << ' ';
cout << endl;
}
return 0;
}
void bfs(vector<vector<char>> &graph, pair<int,int> start){
queue<pair<int,int>> q;
q.push({start.first, start.second});

while(!q.empty()){
pair<int,int> temp = q.front();
q.pop();
graph[temp.first][temp.second] = 'V';
if(temp.first != maxi.first-1) 
if(graph[temp.first+1][temp.second] != '#') q.push({temp.first+1,temp.second});
else{ 
if(temp.second != maxi.second-1 && graph[temp.first][temp.second+1] != '#' && graph[temp.first][temp.second+1] != 'V') 
q.push({temp.first,temp.second+1});
if(temp.second != 0 && graph[temp.first][temp.second-1] != '#' && graph[temp.first][temp.second-1] != 'V') 
q.push({temp.first,temp.second-1});
}
}
}

如@user17732522所述。此问题无法重现。因为问题出在法官方面。。。。。将代码直接复制到网站解决了这个问题,而不是上传文件。

相关内容

  • 没有找到相关文章

最新更新