結果

問題 No.867 避難経路
ユーザー 👑 hitonanodehitonanode
提出日時 2019-08-16 23:40:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 5,355 bytes
コンパイル時間 3,677 ms
コンパイル使用メモリ 183,312 KB
実行使用メモリ 156,592 KB
最終ジャッジ日時 2023-10-24 09:02:03
合計ジャッジ時間 23,896 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
4,348 KB
testcase_01 AC 7 ms
4,348 KB
testcase_02 AC 7 ms
4,348 KB
testcase_03 AC 7 ms
4,348 KB
testcase_04 AC 7 ms
4,348 KB
testcase_05 AC 7 ms
4,348 KB
testcase_06 AC 7 ms
4,348 KB
testcase_07 AC 7 ms
4,348 KB
testcase_08 AC 7 ms
4,348 KB
testcase_09 AC 7 ms
4,348 KB
testcase_10 AC 7 ms
4,348 KB
testcase_11 AC 7 ms
4,348 KB
testcase_12 AC 7 ms
4,348 KB
testcase_13 AC 7 ms
4,348 KB
testcase_14 AC 7 ms
4,348 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 5,558 ms
156,584 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 5,966 ms
156,584 KB
testcase_26 AC 5,991 ms
156,592 KB
testcase_27 TLE -
testcase_28 AC 5,948 ms
156,576 KB
testcase_29 AC 5,942 ms
156,576 KB
testcase_30 AC 5,644 ms
156,576 KB
testcase_31 AC 5,695 ms
156,592 KB
testcase_32 AC 5,523 ms
156,592 KB
testcase_33 AC 5,548 ms
156,592 KB
testcase_34 AC 5,693 ms
155,488 KB
testcase_35 AC 5,893 ms
155,488 KB
testcase_36 AC 5,798 ms
153,016 KB
testcase_37 AC 5,570 ms
145,960 KB
testcase_38 AC 5,584 ms
145,964 KB
testcase_39 AC 5,550 ms
145,648 KB
testcase_40 AC 5,468 ms
145,692 KB
testcase_41 AC 3 ms
4,384 KB
testcase_42 AC 4 ms
4,384 KB
testcase_43 AC 5 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((lint)(x).size())
#define POW2(n) (1LL << (n))
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<typename T> void ndarray(vector<T> &vec, int len) { vec.resize(len); }
template<typename T, typename... Args> void ndarray(vector<T> &vec, int len, Args... args) { vec.resize(len); for (auto &v : vec) ndarray(v, args...); }
template<typename T> bool mmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template<typename T> bool mmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
template<typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first + r.first, l.second + r.second); }
template<typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first - r.first, l.second - r.second); }
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }
///// This part below is only for debug, not used /////
template<typename T> ostream &operator<<(ostream &os, const vector<T> &vec){ os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const deque<T> &vec){ os << "deq["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &pa){ os << "(" << pa.first << "," << pa.second << ")"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const unordered_map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;
///// END /////
/*
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/tag_and_trait.hpp>
using namespace __gnu_pbds; // find_by_order(), order_of_key()
template<typename TK> using pbds_set = tree<TK, null_type, less<TK>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename TK, typename TV> using pbds_map = tree<TK, TV, less<TK>, rb_tree_tag, tree_order_statistics_node_update>;
*/

using wedges = vector<vector<plint>>; // (to, weight)
vector<lint> dijkstra(int N, int s, const wedges &w)
{
    vector<lint> dist(N, 1e18);
    dist[s] = 0;
    priority_queue<plint, vector<plint>, greater<plint>> pq;
    pq.emplace(0, s);
    while (!pq.empty())
    {
        plint p = pq.top();
        pq.pop();
        int v = p.second;
        if (dist[v] < p.first) continue;
        for (auto nx : w[v])
        {
            lint dnx = p.first + nx.second;
            if (dist[nx.first] > dnx)
            {
                dist[nx.first] = dnx;
                pq.emplace(dnx, nx.first);
            }
        }
    }
    return dist; // (distance, previous_node)
}

int main()
{
    int H, W;
    cin >> H >> W;
    int gx, gy;
    cin >> gx >> gy;
    gx--, gy--;
    vector<vector<lint>> A;
    ndarray(A, H, W);
    cin >> A;

    vector<vector<lint>> dijs(300);
    REP(d, 300)
    {
        wedges edge(H * W);
        REP(i, H) REP(j, W)
        {
            if (j) edge[i * W + j - 1].emplace_back(i * W + j, A[i][j] + d * d);
            if (j + 1 < W) edge[i * W + j + 1].emplace_back(i * W + j, A[i][j] + d * d);
            if (i) edge[(i - 1) * W + j].emplace_back(i * W + j, A[i][j] + d * d);
            if (i + 1 < H) edge[(i + 1) * W + j].emplace_back(i * W + j, A[i][j] + d * d);
        }
        dijs[d] = dijkstra(H * W, gx * W + gy, edge);
    }
    int Q;
    cin >> Q;
    REP(i, Q)
    {
        lint x, y, k;
        cin >> x >> y >> k;
        x--, y--;
        if (k < 299)
        {
            printf("%lld\n", dijs[k][x * W + y] + k * k + A[gx][gy]);
        }
        else
        {
            lint r1 = dijs[298][x * W + y], r2 = dijs[299][x * W + y];
            lint dr = (r2 - r1) / (299 * 299 - 298 * 298);
            printf("%lld\n", r1 + dr * (k * k - 298 * 298) + k * k + A[gx][gy]);
        }
    }
}
0