# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
768688 | green_gold_dog | Maze (JOI23_ho_t3) | C++17 | 2081 ms | 56984 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 1'000'000'000;
template<typename T>
bool assign_min(T& a, T b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<typename T>
bool assign_max(T& a, T b) {
if (a < b) {
a = b;
return true;
}
return false;
}
struct segment_tree {
vector<bool> tree;
ll size;
segment_tree(ll n) {
size = 1;
while (size < n) {
size *= 2;
}
tree.resize(size * 2, false);
}
vector<ll> set(ll l, ll r) {
vector<ll> ans;
set(1, 0, size, l, r, ans);
return ans;
}
void set(ll v, ll l, ll r, ll ql, ll qr, vector<ll>& ans) {
if (tree[v]) {
return;
}
if (r <= ql || qr <= l) {
return;
}
if (r - l == 1) {
ans.push_back(l);
tree[v] = true;
return;
}
ll mid = (l + r) / 2;
set(v * 2, l, mid, ql, qr, ans);
set(v * 2 + 1, mid, r, ql, qr, ans);
tree[v] = tree[v * 2] && tree[v * 2 + 1];
}
};
void solve() {
ll n, r, c;
cin >> r >> c >> n;
ll sx, sy, gx, gy;
cin >> sx >> sy >> gx >> gy;
sx--;
sy--;
gx--;
gy--;
vector<vector<bool>> arr(r, vector<bool>(c, false));
vector<vector<bool>> used(r, vector<bool>(c, false));
vector<segment_tree> dist(r, segment_tree(c));
for (ll i = 0; i < r; i++) {
string s;
cin >> s;
for (ll j = 0; j < c; j++) {
if (s[j] == '.') {
arr[i][j] = true;
}
}
}
vector<pair<ll, ll>> now;
now.emplace_back(sx, sy);
used[sx][sy] = true;
ll na = 0;
while (true) {
vector<pair<ll, ll>> nu;
while (!now.empty()) {
auto[x, y] = now.back();
nu.emplace_back(x, y);
if (x == gx && y == gy) {
cout << na << '\n';
return;
}
now.pop_back();
if (x > 0 && arr[x - 1][y]) {
if (!used[x - 1][y]) {
used[x - 1][y] = true;
now.emplace_back(x - 1, y);
}
}
if (x + 1 < r && arr[x + 1][y]) {
if (!used[x + 1][y]) {
used[x + 1][y] = true;
now.emplace_back(x + 1, y);
}
}
if (y > 0 && arr[x][y - 1]) {
if (!used[x][y - 1]) {
used[x][y - 1] = true;
now.emplace_back(x, y - 1);
}
}
if (y + 1 < c && arr[x][y + 1]) {
if (!used[x][y + 1]) {
used[x][y + 1] = true;
now.emplace_back(x, y + 1);
}
}
}
na++;
for (auto[x, y] : nu) {
for (ll i = -n; i <= n; i++) {
if (x + i >= 0 && x + i < r) {
if (abs(i) == n) {
for (auto j : dist[x + i].set(max(y - n + 1, 0ll), min(y + n, c))) {
if (!used[x + i][j]) {
used[x + i][j] = true;
now.emplace_back(x + i, j);
}
}
} else {
for (auto j : dist[x + i].set(max(y - n, 0ll), min(y + n + 1, c))) {
if (!used[x + i][j]) {
used[x + i][j] = true;
now.emplace_back(x + i, j);
}
}
}
}
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |