QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#348192#6739. Teleportwtz2333WA 28ms208064kbC++172.5kb2024-03-09 17:24:502024-03-09 17:24:52

Judging History

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

  • [2024-03-09 17:24:52]
  • 评测
  • 测评结果:WA
  • 用时:28ms
  • 内存:208064kb
  • [2024-03-09 17:24:50]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int maxn = 5100;
int dis[maxn][maxn][2];
int dx[4] = {1,0,-1,0};
int dy[4] = {0,-1,0,1};
struct node{
    int x,y,opt;
};
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n,k;
    cin >> n >> k;
    vector<string> s(n);
    for(int i = 0;i < n;i ++) {
        cin >> s[i];
    }
    memset(dis,0x3f,sizeof dis);
    int inf = dis[0][0][0];
    dis[0][0][0] = 0;
    deque<node> q;
    q.push_back({0,0,0});
    // cerr << "!!!!\n";
    while(!q.empty()) {
        auto [x,y,opt] = q.front();
        // cerr << x << " " << y << " " <<  opt << endl;
        q.pop_front();
        // cerr <<": asdfasd\n";
        if(x == n - 1 && y == n - 1) {
            cout << dis[x][y][opt] << endl;
            return 0;
        }
        auto check = [&](int x,int y,int opt) -> bool {
            if(x < 0 || x >= n) return false;
            if(y < 0 || y >= n) return false;
            if(s[x][y] == '*') return false;
            if(dis[x][y][opt] != inf) return false;
            return true;
        };
        if(opt == 1) {
            for(int i = 2;i < k;i += 2) {
                int xx = x + (i / 2);
                int yy = y + (i / 2);
                if(check(xx,yy,0)) {
                    dis[xx][yy][0] = dis[x][y][opt];
                    q.push_front({xx,yy,0});
                }
            }
        } else {
            int xx = y + 1;
            int yy = x;
            if(check(xx,yy,1)) {
                dis[xx][yy][1] = dis[x][y][opt] + 1;
                q.push_back({xx,yy,1});
            }
            for(int i = 2;i <= k;i += 2) {
                int xx = x + (i / 2);
                int yy = y + (i / 2);
                if(check(xx,yy,0)) {
                    dis[xx][yy][0] = dis[x][y][opt] + 1;
                    // cerr << "!!!! :" << xx << " " << yy << endl;
                    q.push_back({xx,yy,0});
                }
            }
        }
         // cerr <<": asdfasd\n";
        for(int i = 0;i < 4;i ++) {
            int xx = x + dx[i];
            int yy = y + dy[i];
            if(check(xx,yy,0)) {
                // cerr << xx << " " << yy << endl;
                dis[xx][yy][0] = dis[x][y][opt] + 1;
                q.push_back({xx,yy,0});
            }
        }
        // cerr << "asdarewrew\n";
        // cerr << "asdfgasd\n";
    }
    cout << -1 << endl;
    return 0;
}

// 1 0 0 1 0 0 
// 0 1 0 0 1 0
// 0 0 0 0 0 0
// 1 0 0 1 0 0

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 11ms
memory: 206796kb

input:

3 2
.*.
.*.
...

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 12ms
memory: 206800kb

input:

3 3
.*.
.*.
...

output:

2

result:

ok 1 number(s): "2"

Test #3:

score: -100
Wrong Answer
time: 28ms
memory: 208064kb

input:

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

output:

558

result:

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