結果

問題 No.2826 Earthwork
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-07-26 16:47:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,133 ms / 5,000 ms
コード長 2,904 bytes
コンパイル時間 1,498 ms
コンパイル使用メモリ 130,972 KB
実行使用メモリ 30,096 KB
最終ジャッジ日時 2024-07-26 16:48:14
合計ジャッジ時間 26,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 38 ms
6,940 KB
testcase_02 AC 999 ms
29,492 KB
testcase_03 AC 124 ms
6,940 KB
testcase_04 AC 868 ms
25,372 KB
testcase_05 AC 200 ms
9,000 KB
testcase_06 AC 561 ms
17,472 KB
testcase_07 AC 711 ms
21,064 KB
testcase_08 AC 999 ms
29,460 KB
testcase_09 AC 1,038 ms
29,864 KB
testcase_10 AC 1,122 ms
29,588 KB
testcase_11 AC 765 ms
29,120 KB
testcase_12 AC 39 ms
5,376 KB
testcase_13 AC 338 ms
11,600 KB
testcase_14 AC 1,126 ms
30,060 KB
testcase_15 AC 264 ms
10,104 KB
testcase_16 AC 465 ms
17,404 KB
testcase_17 AC 172 ms
7,424 KB
testcase_18 AC 421 ms
17,044 KB
testcase_19 AC 191 ms
8,960 KB
testcase_20 AC 883 ms
24,920 KB
testcase_21 AC 38 ms
5,376 KB
testcase_22 AC 720 ms
20,684 KB
testcase_23 AC 675 ms
20,288 KB
testcase_24 AC 1,096 ms
29,680 KB
testcase_25 AC 390 ms
20,744 KB
testcase_26 AC 652 ms
20,744 KB
testcase_27 AC 29 ms
5,376 KB
testcase_28 AC 1,133 ms
30,096 KB
testcase_29 AC 87 ms
5,504 KB
testcase_30 AC 56 ms
5,376 KB
testcase_31 AC 90 ms
5,376 KB
testcase_32 AC 34 ms
5,376 KB
testcase_33 AC 613 ms
18,092 KB
testcase_34 AC 1,053 ms
29,532 KB
testcase_35 AC 248 ms
9,508 KB
testcase_36 AC 1,081 ms
29,920 KB
testcase_37 AC 1,079 ms
29,652 KB
testcase_38 AC 547 ms
17,024 KB
testcase_39 AC 59 ms
5,376 KB
testcase_40 AC 49 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdint>
#include <iostream>
#include <utility>
#include <functional>
#include <vector>
#include <queue>
#include <ranges>


using i64 = std::int64_t;


constexpr std::pair<int, int> DIRS4[] = {
    { -1, 0 },
    { 0, 1 },
    { 1, 0 },
    { 0, -1 }
};

template<class T, class Comp>
using priority_queue = std::priority_queue<T, std::vector<T>, Comp>;


signed main() {
    int n; std::cin >> n;

    std::vector<i64> h(n * n);
    std::vector<std::string> x(n);
    std::vector<i64> a(n * n), b(n * n);


    for(auto& v : h) std::cin >> v;
    for(auto& v : x) std::cin >> v;

    for(const auto i : std::views::iota(0, n - 1)) {
        for(const auto j : std::views::iota(0, n)) {
            std::cin >> a[i * n + j];
        }
    }

    for(const auto i : std::views::iota(0, n)) {
        for(const auto j : std::views::iota(0, n - 1)) {
            std::cin >> b[i * n + j];
        }
    }


    auto parity = [&](const auto p) {
        return ((p / n) + p % n) % 2;
    };

    std::vector<i64> sup(n * n, -(1UL << 62));
    for(const auto t : std::views::iota(0, 2)) {
        auto cost = [&](const auto p, const auto q, const auto k) {
            const auto r = std::min(p, q);
            const auto w = k % 2 == 0 ? a[r] : b[r];
            const auto s = h[p] + h[q];
            return w * std::abs(s) + ((parity(p) + t) % 2 * 2 - 1) * s;
        };


        priority_queue<std::pair<i64, int>, std::greater<>> que;
        std::vector<i64> dist(n * n, 1UL << 62);


        for(const auto i : std::views::iota(0, n * n)) {
            if(x[i / n][i % n] == '=') {
                que.emplace(dist[i] = 0, i);
            }

            if(parity(i) == t) {
                if(x[i / n][i % n] == '+') que.emplace(dist[i] = 0, i);
            }
            else {
                if(x[i / n][i % n] == '-') que.emplace(dist[i] = 0, i);
            }
        }


        while(!que.empty()) {
            const auto [ d, v ] = que.top(); que.pop();
            if(d > dist[v]) continue;

            const auto i = v / n, j = v % n;

            for(const auto k : std::views::iota(0, 4)) {
                const auto ni = i + DIRS4[k].first, nj = j + DIRS4[k].second;
                if(ni < 0 || nj < 0 || ni >= n || nj >= n) continue;

                const auto nv = ni * n + nj;
                const auto nd = d + cost(v, nv, k);
                if(nd >= dist[nv]) continue;

                que.emplace(dist[nv] = nd, nv);
            }
        }


        for(const auto i : std::views::iota(0, n * n)) {
            const auto v = h[i] + ((parity(i) + t) % 2 * 2 - 1) * dist[i];
            if(sup[i] < v) sup[i] = v;
        }
    }


    int q; std::cin >> q;
    for(const auto _ : std::views::iota(0, q)) {
        int r, c; std::cin >> r >> c; --r, --c;
        i64 e; std::cin >> e;
        std::cout << (sup[r * n + c] >= e ? "Yes" : "No") << "\n";
    }
}
0