QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#348244 | #6739. Teleport | wtz2333 | WA | 31ms | 207772kb | C++17 | 2.9kb | 2024-03-09 17:33:13 | 2024-03-09 17:33:14 |
Judging History
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;
queue<node> q;
q.push({0,0,0});
// cerr << "!!!!\n";
while(!q.empty()) {
auto [x,y,opt] = q.front();
// cerr << x << " " << y << " " << opt << endl;
q.pop();
// 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)) {
if(dis[xx][yy][0] < dis[x][y][opt]) break;
if(dis[xx][yy][0] == dis[x][y][opt])continue;
dis[xx][yy][0] = dis[x][y][opt];
q.push({xx,yy,0});
}
}
} else {
int xx = y + 1;
int yy = x;
if(check(xx,yy,1)) {
if(dis[xx][yy][1] <= dis[x][y][opt] + 1)continue;
dis[xx][yy][1] = dis[x][y][opt] + 1;
q.push({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)) {
if(dis[xx][yy][0] < dis[x][y][opt]) break;
if(dis[xx][yy][0] == dis[x][y][opt] + 1)continue;
dis[xx][yy][0] = dis[x][y][opt] + 1;
// cerr << "!!!! :" << xx << " " << yy << endl;
q.push({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)) {
if(dis[xx][yy][0] <= dis[x][y][opt] + 1)continue;
// cerr << xx << " " << yy << endl;
dis[xx][yy][0] = dis[x][y][opt] + 1;
q.push({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: 206836kb
input:
3 2 .*. .*. ...
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 7ms
memory: 207032kb
input:
3 3 .*. .*. ...
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: -100
Wrong Answer
time: 31ms
memory: 207772kb
input:
961 4 ...*.*..*.....*.*..*..*..*.*.*.*.....*.....*....*..*...*....*.........*....*....*...*......*..*..*...*..*...*.....*...*...*.*.*.........**..**.......*.......*...*...*.*.*........*....*..*..*...*.....*.*......**.**..**...*..*.**.....*....*.*.*..*..*..*.*..*.*..*......*..*..*.*......*...*.*...*....
output:
559
result:
wrong answer 1st numbers differ - expected: '540', found: '559'