QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#414846#6739. TeleportArnold_6WA 10ms9952kbC++172.2kb2024-05-19 21:54:052024-05-19 21:54:06

Judging History

你现在查看的是最新测评结果

  • [2024-05-19 21:54:06]
  • 评测
  • 测评结果:WA
  • 用时:10ms
  • 内存:9952kb
  • [2024-05-19 21:54:05]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

int n,k;
char mp[5005][5005];
int arr[15005];
bool v[5005][5005];
int dx[2]={1,0};
int dy[2]={0,1};

int main()
{
    cin>>n>>k;
    if(k==2)
    {
        cout<<3;
        return 0;
    }
    if(k==3)
    {
        cout<<2;
        return 0;
    }
    for(int i=1;i<=n;i++)
    {
        cin>>mp[i]+1;
    }
    
    queue<pair<pair<int,int>,int> >q;
    q.push({{1,1},0});
    arr[n]=1;
    v[1][1]=1;

    while(q.size())
    {
        int x=q.front().first.first;
        int y=q.front().first.second;
        int step=q.front().second;
        q.pop();

        // cout<<"step="<<step<<" x="<<x<<" y="<<y<<endl;

        if(x==n && y==n)
        {
            cout<<step;
            return 0;
        }

        for(int i=0;i<2;i++)
        {
            int nx=x+dx[i];
            int ny=y+dy[i];
            if(nx<1 || nx>n || ny<1 || ny>n || v[nx][ny] || mp[nx][ny]=='*')continue;
            q.push({{nx,ny},step+1});
            v[nx][ny]=1;
            arr[n+nx-ny]=max(arr[n+nx-ny],ny);
        }

        // int tx,ty,t;
        // tx=x-y+arr[n+x-y];
        // ty=arr[n+x-y];
        
        // t=2*(tx-x);
        // // cout<<"t="<<t<<" tx="<<tx<<" ty="<<ty<<endl;
        // for(int i=2+t;i<=k;i+=2)
        // {
        //     tx+=1;
        //     ty+=1;
        //     // cout<<"step="<<step<<" tx="<<tx<<" ty="<<ty<<endl;
        //     if(tx>n || ty>n)break;
        //     if(v[tx][ty] || mp[tx][ty]=='*')continue;
            
        //     v[tx][ty]=1;
        //     arr[n+tx-ty]=ty;
        //     q.push({{tx,ty},step+1});
        // }

        // tx=y+1-x+arr[n+y+1-x];
        // ty=arr[n+y+1-x];
        // t=1+2*(ty-x);
        // if(tx>0&&ty>0&&!v[tx][ty])q.push({{tx,ty},step+1}),v[tx][ty]=1;

        // for(int i=2+t;i<=k;i+=2)
        // {
        //     tx+=1;
        //     ty+=1;
        //     // cout<<"step="<<step<<" tx="<<tx<<" ty="<<ty<<endl;
        //     if(tx>n || ty>n)break;
        //     if(v[tx][ty] || mp[tx][ty]=='*')continue;
            
        //     v[tx][ty]=1;
        //     arr[n+tx-ty]=ty;
        //     q.push({{tx,ty},step+1});
        // }

    }
    cout<<-1;
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3776kb

input:

3 2
.*.
.*.
...

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

3 3
.*.
.*.
...

output:

2

result:

ok 1 number(s): "2"

Test #3:

score: -100
Wrong Answer
time: 10ms
memory: 9952kb

input:

961 4
...*.*..*.....*.*..*..*..*.*.*.*.....*.....*....*..*...*....*.........*....*....*...*......*..*..*...*..*...*.....*...*...*.*.*.........**..**.......*.......*...*...*.*.*........*....*..*..*...*.....*.*......**.**..**...*..*.**.....*....*.*.*..*..*..*.*..*.*..*......*..*..*.*......*...*.*...*....

output:

-1

result:

wrong answer 1st numbers differ - expected: '540', found: '-1'