Submission #465630

# Submission time Handle Problem Language Result Execution time Memory
465630 2021-08-16T15:10:42 Z AmirElarbi Portals (BOI14_portals) C++14
0 / 100
1 ms 204 KB
#include <bits/stdc++.h>
#define vi vector<int>
#define ve vector
#define ll long long
#define vf vector<float>
#define vll vector<pair<ll,ll>>
#define ii pair<int,int>
#define vvi vector<vi>
#define vii vector<ii>
#define gii greater<ii>
#define pb push_back
#define fi first
#define se second
#define INF 1e7
#define unsigned u
#define eps 1e-18
#define eps1 1e-25
#define optimise ios_base::sync_with_stdio(false);cin.tie(NULL);
#define MAX_A 100005
#define V 450
#define re register
#define maxi(a,b) ((a) > (b) ? (a) : (b))
ll MOD = 998244353;
using namespace std;
char grid[1005][1005];
int mov[4][2] = {{0,1},{1,0},{-1,0},{0,-1}};
int main(){
    optimise;
    int r,c;
    cin >> r >> c;
    ii start, end;
    ll dis[r][c];
    for (int i = 0; i < r; ++i)
    {
        for (int j = 0; j < c; ++j)
        {
            cin >> grid[i][j];
            dis[i][j] = INF;
            if(grid[i][j] == 'S'){
                start.fi = i,start.se = j;
            } else if(grid[i][j] == 'C'){
                end.fi = i,end.se = j;
            }
        }
    }
    dis[start.fi][start.se] = 0;
    queue<ii> q;
    q.push(start);
    while(!q.empty()){
        ii cur = q.front(); q.pop();
        if(cur == end)
            break;
        bool ses = false;
        for (int i = 0; i < 4; ++i)
        {
            int nx =  cur.fi +  mov[i][0], ny = cur.se + mov[i][1];
            if(nx < 0 || ny < 0 || nx >= r || ny >= c || grid[nx][ny] == '#') {
                ses = true;
                continue;
            }
            if(dis[nx][ny] > dis[cur.fi][cur.se] +1 ){
                //if(nx == end.fi && ny == end.se)
                    //cout << cur.fi << " " << cur.se << endl;
                dis[nx][ny] = dis[cur.fi][cur.se] +1 ;
                q.push({nx,ny});
            }
        }
        int near = INF;
        if(!ses){
            for (int i = 0; i < 4; ++i)
            {
                int d = 0;
                int nx =  cur.fi, ny = cur.se;
                while(nx >= 0 && ny >= 0 && nx < r && ny < c && grid[nx][ny] != '#') 
                {
                    nx += mov[i][0], ny += mov[i][1];
                    d++;
                }
                nx -= mov[i][0], ny -= mov[i][1];
                d--;
                //if(nx < 0 || ny < 0 || nx >= r || ny >= c || grid[nx][ny] == '#') 
                    //continue;
                near = min(near,d);
                //cout << near << endl;
            }
        }
        for (int i = 0; i < 4; ++i)
        {
            int nx =  cur.fi, ny = cur.se;
            while(nx >= 0 && ny >= 0 && nx < r && ny < c && grid[nx][ny] != '#') 
            {
                nx += mov[i][0], ny += mov[i][1];
            }
            nx -= mov[i][0], ny -= mov[i][1];
            if(nx < 0 || ny < 0 || nx >= r || ny >= c || grid[nx][ny] == '#') 
                continue;
            if(dis[nx][ny] > dis[cur.fi][cur.se] +near ){
                //if(nx == end.fi && ny == end.se)
                    //cout << cur.fi << " " << cur.se << endl;
                dis[nx][ny] = dis[cur.fi][cur.se] +near ;
                q.push({nx,ny});
            }
        }
    }
    cout << dis[end.fi][end.se]-1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -