結果

問題 No.2826 Earthwork
ユーザー 🦠みどりむし🦠みどりむし
提出日時 2024-06-26 11:06:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,903 bytes
コンパイル時間 1,494 ms
コンパイル使用メモリ 131,688 KB
実行使用メモリ 30,240 KB
最終ジャッジ日時 2024-06-26 11:38:11
合計ジャッジ時間 25,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 454 ms
17,632 KB
testcase_17 WA -
testcase_18 AC 411 ms
16,912 KB
testcase_19 AC 185 ms
8,960 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 386 ms
20,928 KB
testcase_26 WA -
testcase_27 AC 28 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 86 ms
6,940 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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> s(n);
    std::vector<i64> a(n * n), b(n * n);


    for(auto& v : h) std::cin >> v;
    for(auto& v : s) 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 << 60));
    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 x = h[p] + h[q];
            return w * std::abs(x) + ((parity(p) + t) % 2 * 2 - 1) * x;
        };


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


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

            if(parity(i) == t) {
                if(s[i / n][i % n] == '+') que.emplace(dist[i] = 0, i);
            }
            else {
                if(s[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