# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
673540 | AnasBenMoussa | 포탈들 (BOI14_portals) | C++14 | 79 ms | 48760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
// #define int long long
using namespace std;
const int N=1005;
char grid[N][N];
int dis[N][N];
const int nx[4] = {0, 0, 1, -1}, ny[4] = {1, -1, 0, 0};int x,y;
vector<pair<int,pair<int,int>>>adj[N][N];vector<pair<int,pair<int,int>>>se[N][N];
void dijsktra(int r,int c){
int vis[x+1][y+1];
for(int i=1;i<=x;i++){
for(int j=1;j<=y;j++){
vis[i][j]=0;dis[i][j]=INT_MAX;
}
}
set<pair<int,pair<int,int>>>ve;
ve.insert({0,{r,c}});
dis[r][c]=0;
while(!ve.empty()){
pair<int,pair<int,int>>q=*(ve.begin());
ve.erase(*(ve.begin()));
if(vis[q.second.first][q.second.second]){
continue;
}
vis[q.second.first][q.second.second]=1;
for(auto i:se[q.second.first][q.second.second]){
for(auto j:se[q.second.first][q.second.second]){
if(i==j){
continue;
}
if(dis[i.second.first][i.second.second]>j.first+q.first+1){
dis[i.second.first][i.second.second]=j.first+q.first+1;
ve.insert({dis[i.second.first][i.second.second],{i.second.first,i.second.second}});
}
if(dis[j.second.first][j.second.second]>i.first+q.first+1){
dis[j.second.first][j.second.second]=i.first+q.first+1;
ve.insert({dis[j.second.first][j.second.second],{j.second.first,j.second.second}});
}
}
}
for(auto u:adj[q.second.first][q.second.second]){
if(dis[u.second.first][u.second.second]>q.first+u.first){
dis[u.second.first][u.second.second]=q.first+u.first;
ve.insert({dis[u.second.first][u.second.second],{u.second.first,u.second.second}});
}
}
}
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
cin>>x;cin>>y;int stx;int sty;int enx;int eny;
memset(grid,'#',sizeof(grid));
for(int i=1;i<=x;i++){
for(int j=1;j<=y;j++){
cin>>grid[i][j];
if(grid[i][j]=='S'){
stx=i;sty=j;
}
if(grid[i][j]=='C'){
enx=i;eny=j;
}
}
}
for(int i=0;i<=x+1;i++){
for(int j=0;j<=y+1;j++){
if(grid[i][j]!='#'){
for(int r=0;r<4;r++){
int newx=nx[r]+i;int newy=ny[r]+j;
if(newx>=1&&newx<=x&&newy>=1&&newy<=y&&grid[newx][newy]!='#'){
adj[i][j].push_back({1,{newx,newy}});
}
}
}
if(grid[i][j]=='#'){
int l=i-1;
if(i!=0){
//up
while(l!=0){
if(grid[l-1][j]=='#'){
break;
}
l--;
}
if(l!=i-1&&i!=0){
adj[i-1][j].push_back({1,{l,j}});
}
}
l=i+1;
while(l!=x+1){
if(grid[l+1][j]=='#'){
break;
}
l++;
}
if(l!=i+1){
adj[i+1][j].push_back({1,{l,j}});
}
//right
l=j+1;
while(l!=y+1){
if(grid[i][l+1]=='#'){
break;
}
l++;
}
if(l!=j+1){
adj[i][j+1].push_back({1,{i,l}});
}
//left
l=j-1;
while(l!=0){
if(grid[i][l-1]=='#'){
break;
}
l--;
}
if(l!=j-1&&j!=0){
adj[i][j-1].push_back({1,{i,l}});
}
}
if(grid[i][j]!='#'){
//up
int l=i-1;
if(grid[l][j]!='#'){
if(l!=0){
while(true){
if(grid[l-1][j]=='#'){
break;
}
l--;
}
}
se[i][j].push_back({abs(l-i),{l,j}});
}
//down
l=i+1;
if(grid[l][j]!='#'){
while(true){
if(grid[l+1][j]=='#'){
break;
}
l++;
}
se[i][j].push_back({abs(l-i),{l,j}});
}
//right;
l=j+1;
if(grid[i][l]!='#'){
while(true){
if(grid[i][l+1]=='#'){
break;
}
l++;
}
se[i][j].push_back({abs(j-l),{i,l}});
}
//left
if(grid[i][l]!='#'){
l=j-1;
if(l!=0){
while(true){
if(grid[i][l-1]=='#'){
break;
}
l--;
}
}
se[i][j].push_back({abs(j-l),{i,l}});
}
}
}
}
dijsktra(stx,sty);
cout<<dis[enx][eny]<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |