結果
問題 | No.2366 登校 |
ユーザー | milanis48663220 |
提出日時 | 2023-06-30 22:13:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,704 bytes |
コンパイル時間 | 1,317 ms |
コンパイル使用メモリ | 138,080 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-06-12 07:49:29 |
合計ジャッジ時間 | 2,542 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 37 ms
6,944 KB |
testcase_13 | AC | 36 ms
6,940 KB |
testcase_14 | AC | 35 ms
6,944 KB |
testcase_15 | AC | 35 ms
6,944 KB |
testcase_16 | AC | 37 ms
6,944 KB |
testcase_17 | AC | 35 ms
6,940 KB |
testcase_18 | AC | 34 ms
6,944 KB |
testcase_19 | AC | 33 ms
6,940 KB |
testcase_20 | AC | 34 ms
6,944 KB |
testcase_21 | AC | 33 ms
6,944 KB |
testcase_22 | AC | 5 ms
6,940 KB |
testcase_23 | AC | 9 ms
11,776 KB |
testcase_24 | AC | 9 ms
11,648 KB |
testcase_25 | AC | 12 ms
11,520 KB |
testcase_26 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } int dx[4] = {1, -1, 0, 0}; int dy[4] = {0, 0, 1, -1}; const ll inf = 1e18; using T = tuple<ll, int, int, int>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, m, k, t; cin >> n >> m >> k >> t; vector<int> a(k), b(k), c(k), D(k); auto idx = vec2d(n, m, -1); for(int i = 0; i < k; i++){ cin >> a[i] >> b[i] >> c[i] >> D[i]; a[i]--; b[i]--; idx[a[i]][b[i]] = i; } auto dp = vec3d(n, m, n+m+1, inf); priority_queue<T, vector<T>, greater<T>> que; auto set_dist = [&](int i, int j, int cnt, ll d){ if(chmin(dp[i][j][cnt], d)){ que.push({d, i, j, cnt}); } }; auto in_field =[&](int i, int j){ return 0 <= i && i < n && 0 <= j && j < m; }; set_dist(0, 0, 0, 0); while(!que.empty()){ auto [d, i, j, cnt] = que.top(); que.pop(); if(dp[i][j][cnt] != d) continue; for(int k = 0; k < 4; k++){ int ii = i+dx[k]; int jj = j+dy[k]; if(!in_field(ii, jj)) continue; set_dist(ii, jj, cnt, d); } if(idx[i][j] != -1){ int cc = cnt+c[idx[i][j]]-1; chmin(cc, n+m); set_dist(i, j, cc, d+D[idx[i][j]]); } } ll ans = inf; for(int cnt = 0; cnt <= n+m; cnt++){ if(n+m-2-cnt <= t){ chmin(ans, dp[n-1][m-1][cnt]); } } if(ans > inf/2){ cout << -1 << endl; }else{ cout << ans << endl; } }