Submission #755776

# Submission time Handle Problem Language Result Execution time Memory
755776 2023-06-10T16:03:14 Z DavidAA007 Portal (COCI17_portal) C++14
0 / 120
35 ms 21068 KB
#include<bits/stdc++.h>
#define mare 1e9
#define mod 1000000007
#define bit(x,i)(((x)>>(i))&1)
#define FAST ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
using namespace std;
ifstream fin("branza.in");
ofstream fout("branza.out");
int T,n,m,ok,x,y,i,j;
int c,aux,start,maxx,summax,minn;
int s,dr,mij,contor,suma,poz;
char v[505][505];
vector<vector<int>> ans(n,vector<int>(m,2e9));
priority_queue<pair<int, pair<int, int>>, vector<pair<int, pair<int, int>>>, greater<pair<int, pair<int, int>>>> q;
const int dx[]={1,0,-1,0};
const int dy[]={0,1,0,-1};
pair<int, int> inc,sfa,dp[505][505][5];
int main()
{
    cin>>n>>m;
    for(i=0;i<n;i++)
    {
        for(j=0;j<m;j++)
        {
            cin>>v[i][j];
            //cout<<v[i][j];
            if(v[i][j]=='C')
                inc={i,j};
            if(v[i][j]=='F')
                sfa={i,j};
        }
        //cout<<"\n";
    }
    for(i=0;i<n;i++)
    {
        aux=-1;
        for(j=0;j<m;j++)
        {
            if(v[i][j]=='#')
                aux=j;
            dp[i][j][0]={i,aux+1};
        }
    }
    for(i=0;i<n;i++)
    {
        aux=m;
        for(j=m-1;j>=0;j--)
        {
            if(v[i][j]=='#')
                aux=j;
            dp[i][j][1]={i,aux-1};
        }
    }
    for(j=0;j<m;j++)
    {
        aux=-1;
        for(i=0;i<n;i++)
        {
            if(v[i][j]=='#')
                aux=i;
            dp[i][j][2]={aux+1,j};
        }
    }
    for(j=0;j<m;j++)
    {
        aux=n;
        for(i=n-1;i>=0;i--)
        {
            if(v[i][j]=='#')
                aux=i;
            dp[i][j][3]={aux-1,j};
        }
    }
    //cout<<"ajung aci\n";
    auto distanta=[&](pair<int, int> f,pair<int, int> s)
    {
        return abs(f.first-s.first)+abs(f.second-s.second);
    };
    auto upd=[&](pair<int, int> f,int rez){
        if(ans[f.first][f.second]>rez){
            ans[f.first][f.second]=rez;
            q.push({rez,f});
        }
    };
    //cout<<"ajung aci\n";
    q.push({0,inc});
    ans[inc.first][inc.second]=0;
    while(!q.empty())
    {
       // cout<<"intru \n";
        auto c=q.top().second;
        auto dist=q.top().first;
        q.pop();
        if(ans[c.first][c.second]<dist)
            continue;
        for(i=0;i<4;i++)
        {
            for(j=0;j<4;j++)
            {
                if(i==j)//diagonale
                    continue;
                pair<int, int> f=dp[c.first][c.second][i];
                pair<int, int> s=dp[c.first][c.second][j];
                int dist1=distanta(c,s)+dist+1;
                int dist2=distanta(c,f)+dist+1;
                upd(f,dist1);
                upd(s,dist2);
            }
        }
        //cout<<"ajung aci din nou\n";
        for(i=0;i<4;i++)
        {
            int ax=c.first+dx[i];
            int ay=c.second+dy[i];
            if(0<=ax && ax<n && 0<=ay && ay<m && v[ax][ay]!='#')
            {
                if(ans[ax][ay]>dist+1)
                {
                    ans[ax][ay]=dist+1;
                    q.push({dist+1,{ax,ay}});
                }
            }
        }
    }
    if(ans[sfa.first][sfa.second]==2e9)
    {
        cout<<"nemoguce";
    }
    else
    {
        cout<<ans[sfa.first][sfa.second];
    }
    return 0;
}
/*

4 4
####
#.F#
#C.#
####

*/
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 8 ms 3784 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 9 ms 6596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 23 ms 15976 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 29 ms 18792 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 35 ms 21068 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -