結果
問題 | No.867 避難経路 |
ユーザー | FF256grhy |
提出日時 | 2019-11-19 03:14:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,271 ms / 6,000 ms |
コード長 | 3,294 bytes |
コンパイル時間 | 2,461 ms |
コンパイル使用メモリ | 178,608 KB |
実行使用メモリ | 44,032 KB |
最終ジャッジ日時 | 2024-10-03 06:16:00 |
合計ジャッジ時間 | 65,252 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 4 ms
6,816 KB |
testcase_10 | AC | 3 ms
6,816 KB |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 2,271 ms
44,032 KB |
testcase_16 | AC | 2,239 ms
44,032 KB |
testcase_17 | AC | 2,268 ms
44,032 KB |
testcase_18 | AC | 2,207 ms
43,904 KB |
testcase_19 | AC | 2,212 ms
44,032 KB |
testcase_20 | AC | 2,162 ms
44,032 KB |
testcase_21 | AC | 2,115 ms
44,032 KB |
testcase_22 | AC | 2,198 ms
44,032 KB |
testcase_23 | AC | 2,245 ms
44,032 KB |
testcase_24 | AC | 2,171 ms
44,032 KB |
testcase_25 | AC | 2,235 ms
44,032 KB |
testcase_26 | AC | 2,250 ms
43,904 KB |
testcase_27 | AC | 2,187 ms
44,032 KB |
testcase_28 | AC | 2,195 ms
44,032 KB |
testcase_29 | AC | 2,249 ms
44,032 KB |
testcase_30 | AC | 2,039 ms
44,032 KB |
testcase_31 | AC | 2,021 ms
43,904 KB |
testcase_32 | AC | 1,977 ms
44,032 KB |
testcase_33 | AC | 1,969 ms
43,904 KB |
testcase_34 | AC | 2,009 ms
44,032 KB |
testcase_35 | AC | 2,051 ms
43,904 KB |
testcase_36 | AC | 2,118 ms
43,520 KB |
testcase_37 | AC | 1,997 ms
41,344 KB |
testcase_38 | AC | 2,004 ms
41,344 KB |
testcase_39 | AC | 1,982 ms
41,472 KB |
testcase_40 | AC | 1,984 ms
41,344 KB |
testcase_41 | AC | 3 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incID(i, l, r) for(LL i = (l) ; i < (r); ++i) #define incII(i, l, r) for(LL i = (l) ; i <= (r); ++i) #define decID(i, l, r) for(LL i = (r) - 1; i >= (l); --i) #define decII(i, l, r) for(LL i = (r) ; i >= (l); --i) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() template<typename T> bool setmin (T & a, T b) { if(b < a) { a = b; return true; } else { return false; } } template<typename T> bool setmax (T & a, T b) { if(b > a) { a = b; return true; } else { return false; } } template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } } template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } } LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; } LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); } LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); } template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } #define bit(b, i) (((b) >> (i)) & 1) #define BC __builtin_popcountll #define SC static_cast #define SI(v) SC<int>(v.size()) #define SL(v) SC<LL >(v.size()) #define RF(e, v) for(auto & e: v) #define ef else if #define UR assert(false) // ---- ---- #define T0(T) T #define T1(T) vector<T0(T)> #define T2(T) vector<T1(T)> #define T3(T) vector<T2(T)> #define V0(v, T, ...) v #define V1(v, T, n, ...) T1(T)(n, V0(v, T, __VA_ARGS__)) #define V2(v, T, n, ...) T2(T)(n, V1(v, T, __VA_ARGS__)) #define V3(v, T, n, ...) T3(T)(n, V2(v, T, __VA_ARGS__)) #define GPQ priority_queue template<typename T> class LPQ : public GPQ<T, vector<T>, greater<T>> { }; const LL L = 159; int main() { int h, w, gi, gj; cin >> h >> w >> gi >> gj; gi--; gj--; auto a = V2(0, int, h, w); inc(i, h) { inc(j, w) { cin >> a[i][j]; } } auto d = V3(1e9, int, L + 1, h, w); incII(k, 0, L) { LPQ<array<int, 3>> pq; auto update = [&](int i, int j, int v) { if(setmin(d[k][i][j], v)) { pq.push({ d[k][i][j], i, j }); } }; update(gi, gj, a[gi][gj] + k * k); while(! pq.empty()) { auto e = pq.top(); pq.pop(); int v = e[0]; int i = e[1]; int j = e[2]; if(v != d[k][i][j]) { continue; } inc(l, 4) { int di[9] = { +1, 0, -1, 0, +1, +1, -1, -1, 0 }; int dj[9] = { 0, +1, 0, -1, +1, -1, +1, -1, 0 }; int ii = i + di[l]; int jj = j + dj[l]; if(! (inID(ii, 0, h) && inID(jj, 0, w))) { continue; } update(ii, jj, v + a[ii][jj] + k * k); } } } int q; cin >> q; inc(qq, q) { LL i, j, k; cin >> i >> j >> k; i--; j--; LL ans = d[min(k, L)][i][j]; if(k > L) { ans += (abs(gi - i) + abs(gj - j) + 1) * (k * k - L * L); } cout << ans << "\n"; } return 0; }